Hacked By AnonymousFox

Current Path : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/vendor/league/container/src/ServiceProvider/
Upload File :
Current File : //var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/vendor/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php

<?php declare(strict_types=1);

namespace Automattic\Kkart\Vendor\League\Container\ServiceProvider;

use IteratorAggregate;
use Automattic\Kkart\Vendor\League\Container\ContainerAwareInterface;

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);
}

Hacked By AnonymousFox1.0, Coded By AnonymousFox