123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Contracts\Service;
- use Psr\Container\ContainerInterface;
- interface ServiceProviderInterface extends ContainerInterface
- {
-
- public function get(string $id): mixed;
- public function has(string $id): bool;
-
- public function getProvidedServices(): array;
- }
|