Passed
Push — develop ( e3e306...5da5fd )
by nguereza
04:19 queued 01:01
created
src/Service/Provider/ErrorHandlerServiceProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,11 +67,11 @@
 block discarded – undo
67 67
      */
68 68
     public function register(): void
69 69
     {
70
-        $this->app->bind(ErrorHandlerInterface::class, function (ContainerInterface $app) {
70
+        $this->app->bind(ErrorHandlerInterface::class, function(ContainerInterface $app) {
71 71
             return new ErrorHandler($app->get(LoggerInterface::class));
72 72
         });
73 73
 
74
-        $this->app->bind(ErrorHandlerMiddleware::class, function (ContainerInterface $app) {
74
+        $this->app->bind(ErrorHandlerMiddleware::class, function(ContainerInterface $app) {
75 75
             return new ErrorHandlerMiddleware(
76 76
                 $app->get(Config::class)->get('app.debug', false),
77 77
                 $app->get(LoggerInterface::class)
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@
 block discarded – undo
59 59
  * @class ErrorHandlerServiceProvider
60 60
  * @package Platine\Framework\Service\Provider
61 61
  */
62
-class ErrorHandlerServiceProvider extends ServiceProvider
63
-{
62
+class ErrorHandlerServiceProvider extends ServiceProvider {
64 63
     /**
65 64
      * {@inheritdoc}
66 65
      */
Please login to merge, or discard this patch.
src/Env/Loader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
                 continue;
169 169
             }
170 170
 
171
-            $value = preg_replace_callback('~\$\{(\w+)\}~', function ($m) {
171
+            $value = preg_replace_callback('~\$\{(\w+)\}~', function($m) {
172 172
                 return (null === $ref = Env::get($m[1], null)) ? $m[0] : $ref;
173 173
             }, $value);
174 174
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class Loader
56 56
  * @package Platine\Framework\Env
57 57
  */
58
-class Loader
59
-{
58
+class Loader {
60 59
     /**
61 60
      * Put the parsed key value pair into
62 61
      * $_ENV super global.
Please login to merge, or discard this patch.
src/Env/Env.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -116,12 +116,12 @@
 block discarded – undo
116 116
         $options = 0
117 117
     ) {
118 118
         static $special = [
119
-          'true' => true,
120
-          'TRUE' => true,
121
-          'false' => false,
122
-          'FALSE' => false,
123
-          'null' => null,
124
-          'NULL' => null,
119
+            'true' => true,
120
+            'TRUE' => true,
121
+            'false' => false,
122
+            'FALSE' => false,
123
+            'null' => null,
124
+            'NULL' => null,
125 125
         ];
126 126
 
127 127
         $valueResolved = static::resolveReference($value);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
             return $value;
150 150
         }
151 151
 
152
-        $valueResolved = preg_replace_callback('~\$\{(\w+)\}~', function ($m) {
152
+        $valueResolved = preg_replace_callback('~\$\{(\w+)\}~', function($m) {
153 153
             return (null === $ref = static::get($m[1], null)) ? $m[0] : $ref;
154 154
         }, $value);
155 155
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * @class Env
53 53
  * @package Platine\Framework\Env
54 54
  */
55
-class Env
56
-{
55
+class Env {
57 56
     /**
58 57
      * Get the environment variable by its key/name.
59 58
      * @param string $key
Please login to merge, or discard this patch.
src/Migration/Seed/AbstractSeed.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class AbstractSeed
54 54
  * @package Platine\Framework\Migration\Seed
55 55
  */
56
-abstract class AbstractSeed extends QueryBuilder
57
-{
56
+abstract class AbstractSeed extends QueryBuilder {
58 57
     /**
59 58
      * Run the seed
60 59
      * @return void
Please login to merge, or discard this patch.
src/Migration/Seed/Command/SeedStatusCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     ) {
72 72
         parent::__construct($app, $config, $filesystem);
73 73
         $this->setName('seed:status')
74
-             ->setDescription('Show your database seeds status');
74
+                ->setDescription('Show your database seeds status');
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this 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
  * @template T
58 58
  * @extends AbstractSeedCommand<T>
59 59
  */
60
-class SeedStatusCommand extends AbstractSeedCommand
61
-{
60
+class SeedStatusCommand extends AbstractSeedCommand {
62 61
     /**
63 62
      * Create new instance
64 63
      * {@inheritdoc}
@@ -76,8 +75,7 @@  discard block
 block discarded – undo
76 75
     /**
77 76
      * {@inheritdoc}
78 77
      */
79
-    public function execute()
80
-    {
78
+    public function execute() {
81 79
         $writer = $this->io()->writer();
82 80
         $writer->boldYellow('SEED STATUS', true)->eol();
83 81
         $writer->bold('Seed path: ');
Please login to merge, or discard this patch.
src/Migration/Seed/Command/SeedExecuteCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     ) {
72 72
         parent::__construct($app, $config, $filesystem);
73 73
         $this->setName('seed:exec')
74
-             ->setDescription('Command to execute seed');
74
+                ->setDescription('Command to execute seed');
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this 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
  * @template T
58 58
  * @extends AbstractSeedCommand<T>
59 59
  */
60
-class SeedExecuteCommand extends AbstractSeedCommand
61
-{
60
+class SeedExecuteCommand extends AbstractSeedCommand {
62 61
     /**
63 62
      * Create new instance
64 63
      * {@inheritdoc}
@@ -76,8 +75,7 @@  discard block
 block discarded – undo
76 75
     /**
77 76
      * {@inheritdoc}
78 77
      */
79
-    public function execute()
80
-    {
78
+    public function execute() {
81 79
         $io = $this->io();
82 80
         $writer = $io->writer();
83 81
         $writer->boldYellow('SEED EXECUTION', true)->eol();
Please login to merge, or discard this patch.
src/Kernel/HttpKernel.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,7 @@
 block discarded – undo
66 66
  * @package Platine\Framework\Kernel
67 67
  * @template T
68 68
  */
69
-class HttpKernel extends BaseKernel implements RequestHandlerInterface
70
-{
69
+class HttpKernel extends BaseKernel implements RequestHandlerInterface {
71 70
     /**
72 71
      * The router instance
73 72
      * @var Router
Please login to merge, or discard this patch.
src/Kernel/BaseKernel.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
  * @class BaseKernel
54 54
  * @package Platine\Framework\Kernel
55 55
  */
56
-class BaseKernel
57
-{
56
+class BaseKernel {
58 57
     /**
59 58
      * Application instance
60 59
      * @var Application
@@ -65,8 +64,7 @@  discard block
 block discarded – undo
65 64
      * Create new instance
66 65
      * @param Application $app
67 66
      */
68
-    public function __construct(Application $app)
69
-    {
67
+    public function __construct(Application $app) {
70 68
         $this->app = $app;
71 69
     }
72 70
 
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
      * The server request instance
61 60
      * @var ServerRequestInterface
@@ -79,8 +78,7 @@  discard block
 block discarded – undo
79 78
      * @param ServerRequestInterface $request
80 79
      * @param string $queryName
81 80
      */
82
-    public function __construct(ServerRequestInterface $request, string $queryName)
83
-    {
81
+    public function __construct(ServerRequestInterface $request, string $queryName) {
84 82
         $this->request = $request;
85 83
         $this->queryVarName = $queryName;
86 84
 
Please login to merge, or discard this patch.