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