1 | <?php |
||
2 | |||
3 | namespace Ma27\ApiKeyAuthenticationBundle; |
||
4 | |||
5 | use Ma27\ApiKeyAuthenticationBundle\DependencyInjection\Compiler\CompileHasherServicesPass; |
||
6 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
||
7 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
||
8 | |||
9 | class Ma27ApiKeyAuthenticationBundle extends Bundle |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | 1 | public function build(ContainerBuilder $container) |
|
15 | { |
||
16 | 1 | $container->addCompilerPass(new CompileHasherServicesPass()); |
|
17 | 1 | } |
|
18 | } |
||
19 |