Passed
Push — master ( 03c1a4...a8d346 )
by Stanislau
01:22 queued 14s
created
src/DTOPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.