src/CoreBundle/SolidInvoiceCoreBundle.php line 20

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of SolidInvoice project.
  5.  *
  6.  * (c) Pierre du Plessis <open-source@solidworx.co>
  7.  *
  8.  * This source file is subject to the MIT license that is bundled
  9.  * with this source code in the file LICENSE.
  10.  */
  11. namespace SolidInvoice\CoreBundle;
  12. use SolidInvoice\CoreBundle\DependencyInjection\Compiler\DbalLoggerPass;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. final class SolidInvoiceCoreBundle extends Bundle
  16. {
  17.     final public const VERSION '1.0.2';
  18.     final public const APP_NAME 'Dashiro Invoice - eFactura';
  19.     final public const NAMESPACE = __NAMESPACE__;
  20.     public function build(ContainerBuilder $container): void
  21.     {
  22.         parent::build($container);
  23.         $container->addCompilerPass(new DbalLoggerPass());
  24.     }
  25. }