Passed
Push — develop ( 0eb5cb...a52f7d )
by nguereza
03:36
created
src/Service/Provider/AuditServiceProvider.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class AuditServiceProvider
56 56
  * @package Platine\Framework\Service\Provider
57 57
  */
58
-class AuditServiceProvider extends ServiceProvider
59
-{
58
+class AuditServiceProvider extends ServiceProvider {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      */
Please login to merge, or discard this patch.
src/Console/Command/MakeProviderCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @class MakeProviderCommand
58 58
  * @package Platine\Framework\Console\Command
59 59
  */
60
-class MakeProviderCommand extends MakeCommand
61
-{
60
+class MakeProviderCommand extends MakeCommand {
62 61
     /**
63 62
      * {@inheritdoc}
64 63
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         parent::__construct($application, $filesystem);
89 89
 
90 90
         $this->setName('make:provider')
91
-               ->setDescription('Command to generate new service provider class');
91
+                ->setDescription('Command to generate new service provider class');
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeMiddlewareCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         parent::__construct($application, $filesystem);
75 75
 
76 76
         $this->setName('make:middleware')
77
-               ->setDescription('Command to generate new middleware class');
77
+                ->setDescription('Command to generate new middleware class');
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeFormParamCommand.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         parent::__construct($application, $filesystem);
90 90
 
91 91
         $this->setName('make:param')
92
-               ->setDescription('Command to generate new form parameter class');
92
+                ->setDescription('Command to generate new form parameter class');
93 93
     }
94 94
 
95 95
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeEntityCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         parent::__construct($application, $filesystem);
95 95
 
96 96
         $this->setName('make:entity')
97
-               ->setDescription('Command to generate new entity class');
97
+                ->setDescription('Command to generate new entity class');
98 98
     }
99 99
 
100 100
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeValidatorCommand.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,8 +170,8 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         parent::__construct($application, $filesystem);
86 86
 
87 87
         $this->setName('make:validator')
88
-               ->setDescription('Command to generate new validator class');
88
+                ->setDescription('Command to generate new validator class');
89 89
     }
90 90
 
91 91
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeEventCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         parent::__construct($application, $filesystem);
75 75
 
76 76
         $this->setName('make:event')
77
-               ->setDescription('Command to generate new event class');
77
+                ->setDescription('Command to generate new event class');
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeRepositoryCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         parent::__construct($application, $filesystem);
83 83
 
84 84
         $this->setName('make:repository')
85
-               ->setDescription('Command to generate new repository class');
85
+                ->setDescription('Command to generate new repository class');
86 86
     }
87 87
 
88 88
     /**
Please login to merge, or discard this patch.
src/Console/Command/MakeActionCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.