Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
namespace Loevgaard\DandomainConsignmentBundle;
4
5
use Loevgaard\DandomainConsignmentBundle\DependencyInjection\Compiler\ConsignmentServicePass;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
use Symfony\Component\HttpKernel\Bundle\Bundle;
8
9
class LoevgaardDandomainConsignmentBundle extends Bundle
10
{
11
    public function build(ContainerBuilder $container)
12
    {
13
        $container->addCompilerPass(new ConsignmentServicePass());
14
    }
15
}
16