Test Failed
Branch main (294109)
by Iain
08:30
created
src/Subscriptions/Athena/TeamSubscriberSection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         $entityForm = parent::buildEntityForm($entityForm);
48 48
 
49
-        $planNames = array_map(function (Plan $plan) {
49
+        $planNames = array_map(function(Plan $plan) {
50 50
             return $plan->getName();
51 51
         }, $this->planManager->getPlans());
52 52
 
Please login to merge, or discard this patch.
src/User/Command/CreateUserCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     {
47 47
         if (!$input->getArgument('email')) {
48 48
             $emailQuestion = new Question('Please provide an email:');
49
-            $emailQuestion->setValidator(function ($email) {
49
+            $emailQuestion->setValidator(function($email) {
50 50
                 if (empty($email)) {
51 51
                     throw new \Exception('Email can not be empty');
52 52
                 }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         if (!$input->getArgument('password')) {
63 63
             $passwordQuestion = new Question('Please provide a password:');
64
-            $passwordQuestion->setValidator(function ($password) {
64
+            $passwordQuestion->setValidator(function($password) {
65 65
                 if (empty($password)) {
66 66
                     throw new \Exception('password can not be empty');
67 67
                 }
Please login to merge, or discard this patch.
src/User/Command/ConfirmCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     {
45 45
         if (!$input->getArgument('email')) {
46 46
             $emailQuestion = new Question('Please provide an email:');
47
-            $emailQuestion->setValidator(function ($email) {
47
+            $emailQuestion->setValidator(function($email) {
48 48
                 if (empty($email)) {
49 49
                     throw new \Exception('Email can not be empty');
50 50
                 }
Please login to merge, or discard this patch.
src/Subscriptions/Athena/UserSubscriberSection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         $entityForm = parent::buildEntityForm($entityForm);
48 48
 
49
-        $planNames = array_map(function (Plan $plan) {
49
+        $planNames = array_map(function(Plan $plan) {
50 50
             return $plan->getName();
51 51
         }, $this->planManager->getPlans());
52 52
 
Please login to merge, or discard this patch.