Completed
Push — master ( 68f942...d69058 )
by Rafał
18:18
created
Command/CreateTenantCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
             $argument = $this->getHelper('dialog')->askAndValidate(
113 113
                 $output,
114 114
                 '<question>Please enter '.$name.':</question>',
115
-                function ($argument) use ($name) {
115
+                function($argument) use ($name) {
116 116
                     if (empty($argument)) {
117 117
                         throw new \RuntimeException('The '.$name.' can not be empty');
118 118
                     }
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
                 ->end()
47 47
                 ->arrayNode('persistence')
48 48
                     ->validate()
49
-                    ->ifTrue(function ($v) {
50
-                        return count(array_filter($v, function ($persistence) {
49
+                    ->ifTrue(function($v) {
50
+                        return count(array_filter($v, function($persistence) {
51 51
                             return $persistence['enabled'];
52 52
                         })) > 1;
53 53
                     })
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
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
             $argument = $this->getHelper('dialog')->askAndValidate(
113 113
                 $output,
114 114
                 '<question>Please enter '.$name.':</question>',
115
-                function ($argument) use ($name) {
115
+                function($argument) use ($name) {
116 116
                     if (empty($argument)) {
117 117
                         throw new \RuntimeException('The '.$name.' can not be empty');
118 118
                     }
Please login to merge, or discard this patch.