<?php
declare(strict_types=1);
/*
* This file is part of SolidInvoice project.
*
* (c) Pierre du Plessis <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace SolidInvoice\CoreBundle;
use SolidInvoice\CoreBundle\DependencyInjection\Compiler\DbalLoggerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class SolidInvoiceCoreBundle extends Bundle
{
final public const VERSION = '1.0.2';
final public const APP_NAME = 'Dashiro Invoice - eFactura';
final public const NAMESPACE = __NAMESPACE__;
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new DbalLoggerPass());
}
}