@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $validator = null; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - $question->setValidator($validator ?: function ($value) use ($values) { |
|
| 34 | + $question->setValidator($validator ?: function($value) use ($values) { |
|
| 35 | 35 | if (empty($value)) { |
| 36 | 36 | throw new \InvalidArgumentException('Please provide non empty value'); |
| 37 | 37 | } |
@@ -145,7 +145,7 @@ |
||
| 145 | 145 | |
| 146 | 146 | $this->input->setOption('email', $this->input->getOption('email') ?: $this->prompt( |
| 147 | 147 | 'Vendor email', |
| 148 | - $this->git->getConfig('user.email') |
|
| 148 | + $this->git->getConfig('user.email') |
|
| 149 | 149 | )); |
| 150 | 150 | |
| 151 | 151 | $this->input->setOption('description', $this->input->getOption('description') ?: $this->prompt( |
@@ -225,7 +225,7 @@ |
||
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | if ($key === 'vendor_namespace') { |
| 228 | - putenv('VENDOR_NAMESPACE='.$value); |
|
| 228 | + putenv('VENDOR_NAMESPACE=' . $value); |
|
| 229 | 229 | } |
| 230 | 230 | } |
| 231 | 231 | } |