Skip to content

Commit e823b6a

Browse files
author
xmarchegay
committed
fix bundle
1 parent f779cc1 commit e823b6a

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/CleverAgeProcessBundle.php

+9-4
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,25 @@
1616
use CleverAge\ProcessBundle\DependencyInjection\Compiler\CheckSerializerCompilerPass;
1717
use CleverAge\ProcessBundle\DependencyInjection\Compiler\RegistryCompilerPass;
1818
use CleverAge\ProcessBundle\Registry\TransformerRegistry;
19+
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
1920
use Symfony\Component\DependencyInjection\ContainerBuilder;
20-
use Symfony\Component\HttpKernel\Bundle\AbstractBundle;
21+
use Symfony\Component\HttpKernel\Bundle\Bundle;
2122

22-
class CleverAgeProcessBundle extends AbstractBundle
23+
class CleverAgeProcessBundle extends Bundle
2324
{
2425
/**
2526
* Adding compiler passes to inject services into registry.
2627
*/
2728
public function build(ContainerBuilder $container): void
2829
{
30+
parent::build($container);
31+
2932
$container->addCompilerPass(
30-
new RegistryCompilerPass(TransformerRegistry::class, 'cleverage.transformer', 'addTransformer')
33+
new RegistryCompilerPass(TransformerRegistry::class, 'cleverage.transformer', 'addTransformer'),
34+
PassConfig::TYPE_BEFORE_OPTIMIZATION,
35+
0
3136
);
3237

33-
$container->addCompilerPass(new CheckSerializerCompilerPass());
38+
$container->addCompilerPass(new CheckSerializerCompilerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 0);
3439
}
3540
}

0 commit comments

Comments
 (0)