/opt/cpanel/ea-wappspector/vendor/symfony/service-contracts
Edit: /opt/cpanel/ea-wappspector/vendor/symfony/service-contracts/ContainerProviderInterface.php (479B)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Contracts\Service;
use Psr\Container\ContainerInterface;
/**
* Implemented by objects that expose a service container.
*/
interface ContainerProviderInterface
{
public function getContainer(): ContainerInterface;
}