parsaaghayi-backend/vendor/symfony/service-contracts/ContainerProviderInterface.php
DevOps c9a688e80d
Some checks failed
Deploy Backend / deploy (push) Has been cancelled
chore: commit vendor directory for fully offline builds
2026-06-28 18:08:40 +00:00

23 lines
479 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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;
}