/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Container
NameSizeModeActions
ContainerBuilderExtensionInterface.php20110644editdlrm
ContainerParametersExtension.php38150644editdlrm
DoctrineBuilderExtension.php29520644editdlrm
LegacyContainer.php15820644editdlrm
LegacyContainerBuilder.php18260644editdlrm
LegacyContainerInterface.php16080644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Container/LegacyContainer.php (1582B)
* @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\Container; /** * This class is only used when we build containers for legacy environment. It * is used as a base class when dumping the container in our ContainerBuilder. * * It implements LegacyContainerInterface which allows to detect if the container * was built by Symfony or by PrestaShop. */ class LegacyContainer extends Container implements LegacyContainerInterface { }