Completed
Pull Request — master (#10)
by
unknown
02:31
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
                     ])
21 21
                     ->useAttributeAsKey('class')
22 22
                     ->prototype('array')
23
-                        ->beforeNormalization()->ifString()->then(function ($v) {
23
+                        ->beforeNormalization()->ifString()->then(function($v) {
24 24
                             return ['route' => $v];
25 25
                         })->end()
26 26
                         ->children()
Please login to merge, or discard this patch.
Command/DeleteUserCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $handler = new DeleteUserHandler($repository);
86 86
         $handler->handle($command);
87 87
 
88
-        $output->writeln($username . ' has been deleted');
88
+        $output->writeln($username.' has been deleted');
89 89
     }
90 90
 
91 91
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         }
101 101
 
102 102
         return array_map(
103
-            function (UserRepository $repository) {
103
+            function(UserRepository $repository) {
104 104
                 return $repository->getSupportedClass();
105 105
             },
106 106
             $this->userRepositoryCollection->all()
Please login to merge, or discard this patch.
Command/CreateUserCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $handler->handle($command);
92 92
 
93
-        $output->writeln($username . ' has been created');
93
+        $output->writeln($username.' has been created');
94 94
     }
95 95
 
96 96
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         }
106 106
 
107 107
         return array_map(
108
-            function (UserRepository $repository) {
108
+            function(UserRepository $repository) {
109 109
                 return $repository->getSupportedClass();
110 110
             },
111 111
             $this->userRepositoryCollection->all()
Please login to merge, or discard this patch.