@@ -73,7 +73,7 @@ |
||
| 73 | 73 | ) { |
| 74 | 74 | parent::__construct($application, $filesystem); |
| 75 | 75 | $this->setName('make:middleware') |
| 76 | - ->setDescription('Command to generate new middleware class'); |
|
| 76 | + ->setDescription('Command to generate new middleware class'); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -55,8 +55,7 @@ |
||
| 55 | 55 | * @class MakeMiddlewareCommand |
| 56 | 56 | * @package Platine\Framework\Console\Command |
| 57 | 57 | */ |
| 58 | -class MakeMiddlewareCommand extends MakeCommand |
|
| 59 | -{ |
|
| 58 | +class MakeMiddlewareCommand extends MakeCommand { |
|
| 60 | 59 | /** |
| 61 | 60 | * {@inheritdoc} |
| 62 | 61 | */ |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | ) { |
| 89 | 89 | parent::__construct($application, $filesystem); |
| 90 | 90 | $this->setName('make:param') |
| 91 | - ->setDescription('Command to generate new form parameter class'); |
|
| 91 | + ->setDescription('Command to generate new form parameter class'); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
@@ -58,8 +58,7 @@ |
||
| 58 | 58 | * @class MakeFormParamCommand |
| 59 | 59 | * @package Platine\Framework\Console\Command |
| 60 | 60 | */ |
| 61 | -class MakeFormParamCommand extends MakeCommand |
|
| 62 | -{ |
|
| 61 | +class MakeFormParamCommand extends MakeCommand { |
|
| 63 | 62 | /** |
| 64 | 63 | * {@inheritdoc} |
| 65 | 64 | */ |
@@ -123,7 +123,7 @@ |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | if (isset($values[2])) { |
| 126 | - $required = in_array($values[2], ['true', '1', 'yes', 'on', 'y']) ; |
|
| 126 | + $required = in_array($values[2], ['true', '1', 'yes', 'on', 'y']); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | if (isset($values[3])) { |
@@ -93,7 +93,7 @@ |
||
| 93 | 93 | ) { |
| 94 | 94 | parent::__construct($application, $filesystem); |
| 95 | 95 | $this->setName('make:entity') |
| 96 | - ->setDescription('Command to generate new entity class'); |
|
| 96 | + ->setDescription('Command to generate new entity class'); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | * @class MakeEntityCommand |
| 58 | 58 | * @package Platine\Framework\Console\Command |
| 59 | 59 | */ |
| 60 | -class MakeEntityCommand extends MakeCommand |
|
| 61 | -{ |
|
| 60 | +class MakeEntityCommand extends MakeCommand { |
|
| 62 | 61 | /** |
| 63 | 62 | * {@inheritdoc} |
| 64 | 63 | */ |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | ) { |
| 85 | 85 | parent::__construct($application, $filesystem); |
| 86 | 86 | $this->setName('make:validator') |
| 87 | - ->setDescription('Command to generate new validator class'); |
|
| 87 | + ->setDescription('Command to generate new validator class'); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -170,8 +170,8 @@ |
||
| 170 | 170 | { |
| 171 | 171 | $content = parent::createClass(); |
| 172 | 172 | |
| 173 | - $formParameter = $this->replaceFormParameterName($content); |
|
| 174 | - $validationDataBody = $this->getValidationDataBody($formParameter); |
|
| 173 | + $formParameter = $this->replaceFormParameterName($content); |
|
| 174 | + $validationDataBody = $this->getValidationDataBody($formParameter); |
|
| 175 | 175 | |
| 176 | 176 | return $this->getValidationRulesBody($validationDataBody); |
| 177 | 177 | } |
@@ -60,8 +60,7 @@ |
||
| 60 | 60 | * @class MakeValidatorCommand |
| 61 | 61 | * @package Platine\Framework\Console\Command |
| 62 | 62 | */ |
| 63 | -class MakeValidatorCommand extends MakeCommand |
|
| 64 | -{ |
|
| 63 | +class MakeValidatorCommand extends MakeCommand { |
|
| 65 | 64 | /** |
| 66 | 65 | * {@inheritdoc} |
| 67 | 66 | */ |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | ) { |
| 74 | 74 | parent::__construct($application, $filesystem); |
| 75 | 75 | $this->setName('make:event') |
| 76 | - ->setDescription('Command to generate new event class'); |
|
| 76 | + ->setDescription('Command to generate new event class'); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -55,8 +55,7 @@ |
||
| 55 | 55 | * @class MakeEventCommand |
| 56 | 56 | * @package Platine\Framework\Console\Command |
| 57 | 57 | */ |
| 58 | -class MakeEventCommand extends MakeCommand |
|
| 59 | -{ |
|
| 58 | +class MakeEventCommand extends MakeCommand { |
|
| 60 | 59 | /** |
| 61 | 60 | * {@inheritdoc} |
| 62 | 61 | */ |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | ) { |
| 82 | 82 | parent::__construct($application, $filesystem); |
| 83 | 83 | $this->setName('make:repository') |
| 84 | - ->setDescription('Command to generate new repository class'); |
|
| 84 | + ->setDescription('Command to generate new repository class'); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | * @class MakeRepositoryCommand |
| 58 | 58 | * @package Platine\Framework\Console\Command |
| 59 | 59 | */ |
| 60 | -class MakeRepositoryCommand extends MakeCommand |
|
| 61 | -{ |
|
| 60 | +class MakeRepositoryCommand extends MakeCommand { |
|
| 62 | 61 | /** |
| 63 | 62 | * {@inheritdoc} |
| 64 | 63 | */ |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | ) { |
| 77 | 77 | parent::__construct($application, $filesystem); |
| 78 | 78 | $this->setName('make:action') |
| 79 | - ->setDescription('Command to generate new request handler class'); |
|
| 79 | + ->setDescription('Command to generate new request handler class'); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -58,8 +58,7 @@ |
||
| 58 | 58 | * @class MakeActionCommand |
| 59 | 59 | * @package Platine\Framework\Console\Command |
| 60 | 60 | */ |
| 61 | -class MakeActionCommand extends MakeCommand |
|
| 62 | -{ |
|
| 61 | +class MakeActionCommand extends MakeCommand { |
|
| 63 | 62 | /** |
| 64 | 63 | * {@inheritdoc} |
| 65 | 64 | */ |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | ) { |
| 82 | 82 | parent::__construct($application, $filesystem); |
| 83 | 83 | $this->setName('make:listener') |
| 84 | - ->setDescription('Command to generate new event listener class'); |
|
| 84 | + ->setDescription('Command to generate new event listener class'); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | * @class MakeListenerCommand |
| 58 | 58 | * @package Platine\Framework\Console\Command |
| 59 | 59 | */ |
| 60 | -class MakeListenerCommand extends MakeCommand |
|
| 61 | -{ |
|
| 60 | +class MakeListenerCommand extends MakeCommand { |
|
| 62 | 61 | /** |
| 63 | 62 | * {@inheritdoc} |
| 64 | 63 | */ |
@@ -59,8 +59,7 @@ |
||
| 59 | 59 | * @class Auditor |
| 60 | 60 | * @package Platine\Framework\Audit |
| 61 | 61 | */ |
| 62 | -class Auditor |
|
| 63 | -{ |
|
| 62 | +class Auditor { |
|
| 64 | 63 | /** |
| 65 | 64 | * The audit repository |
| 66 | 65 | * @var AuditRepository |