* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection; /** * A ServiceSubscriber exposes its dependencies via the static {@link getSubscribedServices} method. * * The getSubscribedServices method returns an array of service types required by such instances, * optionally keyed by the service names used internally. Service types that start with an interrogation * mark "?" are optional, while the other ones are mandatory service dependencies. * * The injected service locators SHOULD NOT allow access to any other services not specified by the method. * * It is expected that ServiceSubscriber instances consume PSR-11-based service locators internally. * This interface does not dictate any injection method for these service locators, although constructor * injection is recommended. * * @author Nicolas Grekas */ interface ServiceSubscriberInterface { /** * Returns an array of service types required by such instances, optionally keyed by the service names used internally. * * For mandatory dependencies: * * * array('logger' => 'Psr\Log\LoggerInterface') means the objects use the "logger" name * internally to fetch a service which must implement Psr\Log\LoggerInterface. * * array('Psr\Log\LoggerInterface') is a shortcut for * * array('Psr\Log\LoggerInterface' => 'Psr\Log\LoggerInterface') * * otherwise: * * * array('logger' => '?Psr\Log\LoggerInterface') denotes an optional dependency * * array('?Psr\Log\LoggerInterface') is a shortcut for * * array('Psr\Log\LoggerInterface' => '?Psr\Log\LoggerInterface') * * @return array The required service types, optionally keyed by service names */ public static function getSubscribedServices(); } __halt_compiler();----SIGNATURE:----kUpvrP9Mu691u8AsbQQLrKbSld0+TL70wgM2032K8oMcJolXIxyFB1emGmCdn8/F4QRw4XluLUh3eQeX90//yQvGDc3/6v9R8XBU+Yb4XVFXdDI/h69svFgc+4Vv7k1B4Yirj2lSU/FGLA4bkpA1sPts7NDyXfSirzM2CNnRjMGhQRFm/OKr61vo9oZQVuD/SiuTWSNpfPSIUAqX63P0xobQXZQRgzhHI1xAtbD625Iu4Td9kDyd83YW5jWB6H9V1U5ZIvsw0BkZz3joDMd76lJK7HZ+QxuPCDH5sO0infM954A2fNrkB3s1fQMWud9t1E6xeQEgYX+04XS8Nh5nmjkDfj+QUoqylL6z3e4zCshv2H3x2+UzTDco4Zo/NPHxWte+ztfVRNcJzhviPhTTB2ptXa1asfwawq8QZYZSKXBcJOBAJWLwY0nPVkWDqU5u2EPQHKCwZMqDGZht5yAuia2Ngoxx0lRKlIQkyiT+gPbeUYjH8J30Q7f9bIJFKk06ZENGybZi21GmHjOiasGCagUvDL8kmkwawwBa4tpsHj7TPB10Iq3n9+Ps8lV0q0vAYnVVa36UfCyGOdAjkx+1a2KgxFAqcO3RRooiZe4d0JyxAShCnzXnlr6b/6Zfm5b/wS9scLxeRloDostGgeJD+dYeO9y6VfhQPC4vx88uzRM=----ATTACHMENT:----ODMzODQ4NjI4MDM2NTMyNSAzODUyOTY3NjM0MjU2Njg2IDEyMTc4NTg1Mzc4NjIzNDA=