Passed
Push — develop ( e3a9b8...5130a6 )
by nguereza
02:51
created
src/Template/Tag/CurrentUrlTag.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 CurrentUrlTag
56 56
  * @package Platine\Framework\Template\Tag
57 57
  */
58
-class CurrentUrlTag extends AbstractTag
59
-{
58
+class CurrentUrlTag extends AbstractTag {
60 59
 
61 60
     /**
62 61
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Http/RequestData.php 1 patch
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class RequestData
55 55
  * @package Platine\Framework\Http
56 56
  */
57
-class RequestData
58
-{
57
+class RequestData {
59 58
 
60 59
     /**
61 60
      * The request body or post data
@@ -91,8 +90,7 @@  discard block
 block discarded – undo
91 90
      * Create new instance
92 91
      * @param ServerRequestInterface $request
93 92
      */
94
-    public function __construct(ServerRequestInterface $request)
95
-    {
93
+    public function __construct(ServerRequestInterface $request) {
96 94
         $this->posts = (array) $request->getParsedBody();
97 95
         $this->gets = $request->getQueryParams();
98 96
         $this->servers = $request->getServerParams();
@@ -154,8 +152,7 @@  discard block
 block discarded – undo
154 152
      *
155 153
      * @return mixed
156 154
      */
157
-    public function get(string $key, $default = null)
158
-    {
155
+    public function get(string $key, $default = null) {
159 156
         $gets = $this->applyInputClean($this->gets);
160 157
         return Arr::get($gets, $key, $default);
161 158
     }
@@ -167,8 +164,7 @@  discard block
 block discarded – undo
167 164
      *
168 165
      * @return mixed
169 166
      */
170
-    public function post(string $key, $default = null)
171
-    {
167
+    public function post(string $key, $default = null) {
172 168
         $posts = $this->applyInputClean($this->posts);
173 169
         return Arr::get($posts, $key, $default);
174 170
     }
@@ -180,8 +176,7 @@  discard block
 block discarded – undo
180 176
      *
181 177
      * @return mixed
182 178
      */
183
-    public function server(string $key, $default = null)
184
-    {
179
+    public function server(string $key, $default = null) {
185 180
         $servers = $this->applyInputClean($this->servers);
186 181
         return Arr::get($servers, $key, $default);
187 182
     }
@@ -193,8 +188,7 @@  discard block
 block discarded – undo
193 188
      *
194 189
      * @return mixed
195 190
      */
196
-    public function cookie(string $key, $default = null)
197
-    {
191
+    public function cookie(string $key, $default = null) {
198 192
         $cookies = $this->applyInputClean($this->cookies);
199 193
         return Arr::get($cookies, $key, $default);
200 194
     }
@@ -204,8 +198,7 @@  discard block
 block discarded – undo
204 198
      * @param mixed $str
205 199
      * @return mixed
206 200
      */
207
-    protected function cleanInput($str)
208
-    {
201
+    protected function cleanInput($str) {
209 202
         if (is_array($str)) {
210 203
             return array_map([$this, 'cleanInput'], $str);
211 204
         }
Please login to merge, or discard this patch.
src/Service/Provider/PaginationServiceProvider.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
             $config = $app->get(Config::class);
88 88
 
89 89
             $pagination->setItemsPerPage($config->get('pagination.item_per_page', 10))
90
-                      ->setMaxPages($config->get('pagination.max_pages', 5));
90
+                        ->setMaxPages($config->get('pagination.max_pages', 5));
91 91
 
92 92
             return $pagination;
93 93
         });
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@
 block discarded – undo
61 61
  * @class PaginationServiceProvider
62 62
  * @package Platine\Framework\Service\Provider
63 63
  */
64
-class PaginationServiceProvider extends ServiceProvider
65
-{
64
+class PaginationServiceProvider extends ServiceProvider {
66 65
 
67 66
     /**
68 67
      * {@inheritdoc}
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function register(): void
71 71
     {
72
-        $this->app->bind(UrlGeneratorInterface::class, function (ContainerInterface $app) {
72
+        $this->app->bind(UrlGeneratorInterface::class, function(ContainerInterface $app) {
73 73
             return new ServerRequestUrlGenerator(
74 74
                 $app->get(ServerRequestInterface::class),
75 75
                 'page'
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $this->app->bind(RendererInterface::class, BootstrapRenderer::class);
80 80
 
81
-        $this->app->bind(Pagination::class, function (ContainerInterface $app) {
81
+        $this->app->bind(Pagination::class, function(ContainerInterface $app) {
82 82
             $pagination = new Pagination(
83 83
                 $app->get(UrlGeneratorInterface::class),
84 84
                 $app->get(RendererInterface::class)
Please login to merge, or discard this patch.
src/Console/Command/MakeActionCommand.php 5 patches
Indentation   +1 added lines, -29 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     ) {
75 75
         parent::__construct($application, $filesystem);
76 76
         $this->setName('make:action')
77
-               ->setDescription('Command to generate new request handler class');
77
+                ->setDescription('Command to generate new request handler class');
78 78
 
79 79
         $this->addOption('-o|--overwrite', 'Overwrite existing files.', false, false);
80 80
     }
@@ -85,31 +85,3 @@  discard block
 block discarded – undo
85 85
     public function getClassTemplate(): string
86 86
     {
87 87
         return <<<EOF
88
-        <?php
89
-        
90
-        declare(strict_types=1);
91
-        
92
-        namespace %namespace%;
93
-
94
-        use Platine\Http\Handler\RequestHandlerInterface;
95
-        use Platine\Http\ResponseInterface;
96
-        use Platine\Http\ServerRequestInterface;
97
-
98
-        /**
99
-        * @class %classname%
100
-        * @package %namespace%
101
-        */
102
-        class %classname% implements RequestHandlerInterface
103
-        {
104
-
105
-            /**
106
-            * {@inheritodc}
107
-            */
108
-            public function handle(ServerRequestInterface \$request): ResponseInterface
109
-            {
110
-            }
111
-        }
112
-        
113
-        EOF;
114
-    }
115
-}
Please login to merge, or discard this patch.
Switch Indentation   -28 removed lines patch added patch discarded remove patch
@@ -85,31 +85,3 @@
 block discarded – undo
85 85
     public function getClassTemplate(): string
86 86
     {
87 87
         return <<<EOF
88
-        <?php
89
-        
90
-        declare(strict_types=1);
91
-        
92
-        namespace %namespace%;
93
-
94
-        use Platine\Http\Handler\RequestHandlerInterface;
95
-        use Platine\Http\ResponseInterface;
96
-        use Platine\Http\ServerRequestInterface;
97
-
98
-        /**
99
-        * @class %classname%
100
-        * @package %namespace%
101
-        */
102
-        class %classname% implements RequestHandlerInterface
103
-        {
104
-
105
-            /**
106
-            * {@inheritodc}
107
-            */
108
-            public function handle(ServerRequestInterface \$request): ResponseInterface
109
-            {
110
-            }
111
-        }
112
-        
113
-        EOF;
114
-    }
115
-}
Please login to merge, or discard this patch.
Spacing   -28 removed lines patch added patch discarded remove patch
@@ -85,31 +85,3 @@
 block discarded – undo
85 85
     public function getClassTemplate(): string
86 86
     {
87 87
         return <<<EOF
88
-        <?php
89
-        
90
-        declare(strict_types=1);
91
-        
92
-        namespace %namespace%;
93
-
94
-        use Platine\Http\Handler\RequestHandlerInterface;
95
-        use Platine\Http\ResponseInterface;
96
-        use Platine\Http\ServerRequestInterface;
97
-
98
-        /**
99
-        * @class %classname%
100
-        * @package %namespace%
101
-        */
102
-        class %classname% implements RequestHandlerInterface
103
-        {
104
-
105
-            /**
106
-            * {@inheritodc}
107
-            */
108
-            public function handle(ServerRequestInterface \$request): ResponseInterface
109
-            {
110
-            }
111
-        }
112
-        
113
-        EOF;
114
-    }
115
-}
Please login to merge, or discard this patch.
Braces   +1 added lines, -30 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class MakeActionCommand
56 56
  * @package Platine\Framework\Console\Command
57 57
  */
58
-class MakeActionCommand extends MakeCommand
59
-{
58
+class MakeActionCommand extends MakeCommand {
60 59
 
61 60
     /**
62 61
      * {@inheritodc}
@@ -85,31 +84,3 @@  discard block
 block discarded – undo
85 84
     public function getClassTemplate(): string
86 85
     {
87 86
         return <<<EOF
88
-        <?php
89
-        
90
-        declare(strict_types=1);
91
-        
92
-        namespace %namespace%;
93
-
94
-        use Platine\Http\Handler\RequestHandlerInterface;
95
-        use Platine\Http\ResponseInterface;
96
-        use Platine\Http\ServerRequestInterface;
97
-
98
-        /**
99
-        * @class %classname%
100
-        * @package %namespace%
101
-        */
102
-        class %classname% implements RequestHandlerInterface
103
-        {
104
-
105
-            /**
106
-            * {@inheritodc}
107
-            */
108
-            public function handle(ServerRequestInterface \$request): ResponseInterface
109
-            {
110
-            }
111
-        }
112
-        
113
-        EOF;
114
-    }
115
-}
Please login to merge, or discard this patch.
Upper-Lower-Casing   -28 removed lines patch added patch discarded remove patch
@@ -85,31 +85,3 @@
 block discarded – undo
85 85
     public function getClassTemplate(): string
86 86
     {
87 87
         return <<<EOF
88
-        <?php
89
-        
90
-        declare(strict_types=1);
91
-        
92
-        namespace %namespace%;
93
-
94
-        use Platine\Http\Handler\RequestHandlerInterface;
95
-        use Platine\Http\ResponseInterface;
96
-        use Platine\Http\ServerRequestInterface;
97
-
98
-        /**
99
-        * @class %classname%
100
-        * @package %namespace%
101
-        */
102
-        class %classname% implements RequestHandlerInterface
103
-        {
104
-
105
-            /**
106
-            * {@inheritodc}
107
-            */
108
-            public function handle(ServerRequestInterface \$request): ResponseInterface
109
-            {
110
-            }
111
-        }
112
-        
113
-        EOF;
114
-    }
115
-}
Please login to merge, or discard this patch.
src/Console/MakeCommand.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * @class MakeCommand
58 58
  * @package Platine\Framework\Console
59 59
  */
60
-abstract class MakeCommand extends Command
61
-{
60
+abstract class MakeCommand extends Command {
62 61
 
63 62
     /**
64 63
      * The Application instance
@@ -111,8 +110,7 @@  discard block
 block discarded – undo
111 110
     /**
112 111
      * {@inheritodc}
113 112
      */
114
-    public function execute()
115
-    {
113
+    public function execute() {
116 114
         $writer = $this->io()->writer();
117 115
         $name = $this->getArgumentValue('name');
118 116
         $cleanName = str_replace('/', '\\', $name);
Please login to merge, or discard this patch.
src/Auth/Entity/User.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             'updated_at' => '?date',
72 72
         ]);
73 73
 
74
-        $mapper->filter('status', function (Query $q, $status) {
74
+        $mapper->filter('status', function(Query $q, $status) {
75 75
             $q->where('status')->is($status);
76 76
         });
77 77
     }
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -138,15 +138,15 @@
 block discarded – undo
138 138
     public function jsonSerialize()
139 139
     {
140 140
         return [
141
-          'id' =>  $this->mapper()->getColumn('id'),
142
-          'username' => $this->mapper()->getColumn('username'),
143
-          'email' => $this->mapper()->getColumn('email'),
144
-          'status' => $this->mapper()->getColumn('status'),
145
-          'lastname' => $this->mapper()->getColumn('lastname'),
146
-          'firstname' => $this->mapper()->getColumn('firstname'),
147
-          'role' => $this->mapper()->getColumn('role'),
148
-          'created_at' => $this->mapper()->getColumn('created_at'),
149
-          'updated_at' => $this->mapper()->getColumn('updated_at'),
141
+            'id' =>  $this->mapper()->getColumn('id'),
142
+            'username' => $this->mapper()->getColumn('username'),
143
+            'email' => $this->mapper()->getColumn('email'),
144
+            'status' => $this->mapper()->getColumn('status'),
145
+            'lastname' => $this->mapper()->getColumn('lastname'),
146
+            'firstname' => $this->mapper()->getColumn('firstname'),
147
+            'role' => $this->mapper()->getColumn('role'),
148
+            'created_at' => $this->mapper()->getColumn('created_at'),
149
+            'updated_at' => $this->mapper()->getColumn('updated_at'),
150 150
         ];
151 151
     }
152 152
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * @class User
57 57
  * @package Platine\Framework\Auth\Entity
58 58
  */
59
-class User extends Entity implements IdentityInterface
60
-{
59
+class User extends Entity implements IdentityInterface {
61 60
 
62 61
     /**
63 62
      * {@inheritdoc}
@@ -107,8 +106,7 @@  discard block
 block discarded – undo
107 106
     /**
108 107
      * {@inheritdoc}
109 108
      */
110
-    public function getId()
111
-    {
109
+    public function getId() {
112 110
         return $this->mapper()->getColumn('id');
113 111
     }
114 112
 
@@ -135,8 +133,7 @@  discard block
 block discarded – undo
135 133
     /**
136 134
      * {@inheritdoc}
137 135
      */
138
-    public function jsonSerialize()
139
-    {
136
+    public function jsonSerialize() {
140 137
         return [
141 138
           'id' =>  $this->mapper()->getColumn('id'),
142 139
           'username' => $this->mapper()->getColumn('username'),
Please login to merge, or discard this patch.
src/Pagination/BootstrapRenderer.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@
 block discarded – undo
79 79
         foreach ($pages as $page) {
80 80
             if ($page->getUrl() !== null) {
81 81
                 $html .= '<li class = "page-item' . ($page->isCurrent() ? '  active"' : '"')
82
-                      . '><a href = "' . $page->getUrl() . '" class="page-link">'
83
-                      . $page->getNumber() . '</a></li>';
82
+                        . '><a href = "' . $page->getUrl() . '" class="page-link">'
83
+                        . $page->getNumber() . '</a></li>';
84 84
             } else {
85 85
                 $html .= '<li class = "page-item disabled"><a href="#" class="page-link">'
86 86
                         . $page->getNumber() . '</a></li>';
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class BootstrapRenderer
55 55
  * @package Platine\Framework\Pagination
56 56
  */
57
-class BootstrapRenderer implements RendererInterface
58
-{
57
+class BootstrapRenderer implements RendererInterface {
59 58
 
60 59
     /**
61 60
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Pagination/ServerRequestUrlGenerator.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class ServerRequestUrlGenerator
55 55
  * @package Platine\Framework\Pagination
56 56
  */
57
-class ServerRequestUrlGenerator implements UrlGeneratorInterface
58
-{
57
+class ServerRequestUrlGenerator implements UrlGeneratorInterface {
59 58
 
60 59
     /**
61 60
      * The server request instance
@@ -80,8 +79,7 @@  discard block
 block discarded – undo
80 79
      * @param ServerRequestInterface $request
81 80
      * @param string $queryName
82 81
      */
83
-    public function __construct(ServerRequestInterface $request, string $queryName)
84
-    {
82
+    public function __construct(ServerRequestInterface $request, string $queryName) {
85 83
         $this->request = $request;
86 84
         $this->queryVarName = $queryName;
87 85
 
Please login to merge, or discard this patch.
src/Form/Validator/AbstractValidator.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,14 +54,12 @@
 block discarded – undo
54 54
  * @class AbstractValidator
55 55
  * @package Platine\Framework\Form\Validator
56 56
  */
57
-abstract class AbstractValidator extends Validator
58
-{
57
+abstract class AbstractValidator extends Validator {
59 58
     /**
60 59
      * Create new instance
61 60
      * @param Lang $lang
62 61
      */
63
-    public function __construct(Lang $lang)
64
-    {
62
+    public function __construct(Lang $lang) {
65 63
         parent::__construct($lang);
66 64
     }
67 65
 
Please login to merge, or discard this patch.