Files
2026-04-28 15:13:50 +02:00

16 lines
470 B
PHP

<?php
declare(strict_types=1);
namespace WCPay\Vendor\League\Container\ServiceProvider;
use IteratorAggregate;
use WCPay\Vendor\League\Container\ContainerAwareInterface;
interface ServiceProviderAggregateInterface extends ContainerAwareInterface, IteratorAggregate
{
public function add(ServiceProviderInterface $provider): ServiceProviderAggregateInterface;
public function provides(string $id): bool;
public function register(string $service): void;
}