* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Adapter\Container; use Symfony\Component\DependencyInjection\ContainerInterface; /** * This interface is only used when we build containers for legacy environment. It * is common to LegacyContainer and LegacyContainerBuilder. * * It allows to easily (and without losing performance) detect if the container is a * Symfony one (generated by kernel) or a legacy one (generated by PrestaShop core). */ interface LegacyContainerInterface extends ContainerInterface { }