Automattic\WooCommerce\Vendor\League\Container\ServiceProvider

ServiceProviderAggregateInterface{}WC 1.0

No Hooks.

Usage

$ServiceProviderAggregateInterface = new ServiceProviderAggregateInterface();
// use class methods

Methods

  1. public add($provider)
  2. public provides(string $service)
  3. public register(string $service)

ServiceProviderAggregateInterface{} code WC 8.6.1

interface ServiceProviderAggregateInterface extends ContainerAwareInterface, IteratorAggregate
{
    /**
     * Add a service provider to the aggregate.
     *
     * @param string|ServiceProviderInterface $provider
     *
     * @return self
     */
    public function add($provider) : ServiceProviderAggregateInterface;

    /**
     * Determines whether a service is provided by the aggregate.
     *
     * @param string $service
     *
     * @return boolean
     */
    public function provides(string $service) : bool;

    /**
     * Invokes the register method of a provider that provides a specific service.
     *
     * @param string $service
     *
     * @return void
     */
    public function register(string $service);
}