Files
farmOS-dev/vendor/league/container/src/ServiceProvider/ServiceProviderInterface.php
2024-12-10 15:08:16 +01:00

16 lines
400 B
PHP

<?php
declare(strict_types=1);
namespace League\Container\ServiceProvider;
use League\Container\ContainerAwareInterface;
interface ServiceProviderInterface extends ContainerAwareInterface
{
public function getIdentifier(): string;
public function provides(string $id): bool;
public function register(): void;
public function setIdentifier(string $id): ServiceProviderInterface;
}