Completed
Push — master ( d673b9...b416cf )
by Rafał
23:22
created
Command/CreateTenantCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
         $default = $input->getOption('default');
123 123
         if (!$input->getArgument($name) && !$default) {
124 124
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
125
-            $question->setValidator(function ($argument) use ($name) {
125
+            $question->setValidator(function($argument) use ($name) {
126 126
                 if (empty($argument)) {
127 127
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
128 128
                 }
Please login to merge, or discard this patch.
Command/CreateOrganizationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         if (!$input->getArgument($name) && !$default) {
102 102
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
103
-            $question->setValidator(function ($argument) use ($name) {
103
+            $question->setValidator(function($argument) use ($name) {
104 104
                 if (empty($argument)) {
105 105
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
106 106
                 }
Please login to merge, or discard this patch.