123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Symfony\Contracts\Service;
- use Psr\Container\ContainerInterface;
- interface ServiceProviderInterface extends ContainerInterface
- {
-
- public function getProvidedServices(): array;
- }
|