@@ -46,7 +46,7 @@ |
||
| 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 | |
@@ -46,7 +46,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -44,7 +44,7 @@ |
||
| 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 | } |
@@ -46,7 +46,7 @@ |
||
| 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 | |