/usr/share/php/Symfony/Component/Config/Resource
NameSizeModeActions
ClassExistenceResource.php70590644editdlrm
ComposerResource.php15840644editdlrm
DirectoryResource.php27080644editdlrm
FileExistenceResource.php12450644editdlrm
FileResource.php14860644editdlrm
GlobResource.php76520644editdlrm
ReflectionClassResource.php92780644editdlrm
ResourceInterface.php9560644editdlrm
SelfCheckingResourceChecker.php13760644editdlrm
SelfCheckingResourceInterface.php7790644editdlrm
Edit: /usr/share/php/Symfony/Component/Config/Resource/SelfCheckingResourceInterface.php (779B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Resource; /** * Interface for Resources that can check for freshness autonomously, * without special support from external services. * * @author Matthias Pigulla */ interface SelfCheckingResourceInterface extends ResourceInterface { /** * Returns true if the resource has not been updated since the given timestamp. * * @param int $timestamp The last time the resource was loaded * * @return bool */ public function isFresh(int $timestamp); }