/opt/cpanel/ea-wappspector/vendor/symfony/service-contracts
NameSizeModeActions
Attribute/-0755rm
Test/-0755rm
CHANGELOG.md1570644editdlrm
composer.json11420644editdlrm
ContainerAwareInterface.php4110644editdlrm
ContainerProviderInterface.php4790644editdlrm
LICENSE10680644editdlrm
README.md3300644editdlrm
ResetInterface.php10350644editdlrm
ServiceCollectionInterface.php6260644editdlrm
ServiceLocatorTrait.php36040644editdlrm
ServiceMethodsSubscriberTrait.php41730644editdlrm
ServiceProviderInterface.php13820644editdlrm
ServiceSubscriberInterface.php27500644editdlrm
ServiceSubscriberTrait.php32330644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/symfony/service-contracts/ServiceCollectionInterface.php (626B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; /** * A ServiceProviderInterface that is also countable and iterable. * * @author Kevin Bond * * @template-covariant T of mixed * * @extends ServiceProviderInterface * @extends \IteratorAggregate */ interface ServiceCollectionInterface extends ServiceProviderInterface, \Countable, \IteratorAggregate { }