/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/config/Resource
NameSizeModeActions
ClassExistenceResource.php69720644editdlrm
ComposerResource.php15650644editdlrm
DirectoryResource.php27460644editdlrm
FileExistenceResource.php12200644editdlrm
FileResource.php14650644editdlrm
GlobResource.php87150644editdlrm
ReflectionClassResource.php67570644editdlrm
ResourceInterface.php9640644editdlrm
SelfCheckingResourceChecker.php13740644editdlrm
SelfCheckingResourceInterface.php7580644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/config/Resource/ResourceInterface.php (964B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Resource; /** * ResourceInterface is the interface that must be implemented by all Resource classes. * * @author Fabien Potencier */ interface ResourceInterface { /** * Returns a string representation of the Resource. * * This method is necessary to allow for resource de-duplication, for example by means * of array_unique(). The string returned need not have a particular meaning, but has * to be identical for different ResourceInterface instances referring to the same * resource; and it should be unlikely to collide with that of other, unrelated * resource instances. */ public function __toString(): string; }