vendor/store.shopware.com/proxabasketcrosssellingsw6/src/ProxaBasketCrossSellingSW6.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace ProxaBasketCrossSellingSW6;
  3. use Shopware\Core\Framework\Plugin;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. class ProxaBasketCrossSellingSW6 extends Plugin
  6. {
  7.     /**
  8.      * @param ContainerBuilder $container
  9.      * @return void
  10.      */
  11.     public function build(ContainerBuilder $container): void
  12.     {
  13.         parent::build($container);
  14.         $container->setParameter($this->getContainerPrefix() . '.plugin_name'$this->getName());
  15.     }
  16. }