Completed
Pull Request — master (#10)
by
unknown
04:03
created
Command/DeleteUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
 
45 45
         $handler->handle($command);
46 46
 
47
-        $output->writeln($username . ' has been deleted');
47
+        $output->writeln($username.' has been deleted');
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
Command/CreateUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
 
53 53
         $handler->handle($command);
54 54
 
55
-        $output->writeln($username . ' has been created');
55
+        $output->writeln($username.' has been created');
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
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.