custom/plugins/CompraLoginWithCustomerNumberSW6/src/CompraLoginWithCustomerNumberSW6.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Compra\LoginWithCustomerNumberSW6;
  3. use Shopware\Core\Framework\Plugin;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. class CompraLoginWithCustomerNumberSW6 extends Plugin
  6. {
  7.     public function build(ContainerBuilder $container): void
  8.     {
  9.         $container->setParameter('compra_login_with_customer_number_s_w6.plugin_dir'$this->getPath());
  10.         parent::build($container);
  11.     }
  12. }