16 lines
426 B
PHP
16 lines
426 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WCPay\Vendor\League\Container\ServiceProvider;
|
|
|
|
use WCPay\Vendor\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;
|
|
}
|