| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | final class SetonoSyliusStockMovementPlugin extends AbstractResourceBundle |
||
| 17 | { |
||
| 18 | use SyliusPluginTrait; |
||
| 19 | |||
| 20 | public function build(ContainerBuilder $container): void |
||
| 21 | { |
||
| 22 | parent::build($container); |
||
| 23 | |||
| 24 | $container->addCompilerPass(new RegisterCurrencyConvertersPass()); |
||
| 25 | $container->addCompilerPass(new RegisterFilesystemPass()); |
||
| 26 | $container->addCompilerPass(new RegisterFiltersPass()); |
||
| 27 | $container->addCompilerPass(new RegisterTransportsPass()); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getSupportedDrivers(): array |
||
| 34 | ]; |
||
| 35 | } |
||
| 37 |