| Total Complexity | 4 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Coverage | 90.91% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | class SerializerNormalizerPass implements CompilerPassInterface | ||
| 14 | { | ||
| 15 | use PriorityTaggedServiceTrait; | ||
| 16 | |||
| 17 | private $service; | ||
| 18 | private $normalizerTag; | ||
| 19 | |||
| 20 | 4 | public function __construct(string $service = 'bdf_serializer.normalizer.loader', string $normalizerTag = 'bdf_serializer.normalizer') | |
| 24 | 4 | } | |
| 25 | |||
| 26 | 3 | public function process(ContainerBuilder $container) | |
| 40 |