@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function provideDependencies(Container $container): void |
| 50 | 50 | { |
| 51 | - $container->register(DTOFacadeInterface::class, function ( |
|
| 51 | + $container->register(DTOFacadeInterface::class, function( |
|
| 52 | 52 | AppKernelInterface $kernel, |
| 53 | 53 | LoggerFacadeInterface $loggerFacade |
| 54 | 54 | ) { |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | return $this->createDTOGeneratorFacade(); |
| 59 | 59 | }); |
| 60 | 60 | |
| 61 | - $container->register(SerializerFacadeInterface::class, function () { |
|
| 61 | + $container->register(SerializerFacadeInterface::class, function() { |
|
| 62 | 62 | return $this->createDTOSerializerFacade(); |
| 63 | 63 | }); |
| 64 | 64 | |
| 65 | - $container->register(ValidatorFacadeInterface::class, function () { |
|
| 65 | + $container->register(ValidatorFacadeInterface::class, function() { |
|
| 66 | 66 | return $this->createDtoValidatorFacade(); |
| 67 | 67 | }); |
| 68 | 68 | } |