Passed
Push — develop ( d548e3...69cbbf )
by nguereza
04:22
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'),
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
     /**
66 65
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Http/Middleware/ErrorHandlerMiddleware.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         ServerRequestInterface $request,
149 149
         RequestHandlerInterface $handler
150 150
     ): ResponseInterface {
151
-        set_error_handler(static function (
151
+        set_error_handler(static function(
152 152
             int $severity,
153 153
             string $message,
154 154
             string $file,
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@  discard block
 block discarded – undo
63 63
  * @class ErrorHandlerMiddleware
64 64
  * @package Platine\Framework\Http\Middleware
65 65
  */
66
-class ErrorHandlerMiddleware implements MiddlewareInterface
67
-{
66
+class ErrorHandlerMiddleware implements MiddlewareInterface {
68 67
 
69 68
     /**
70 69
      * The logger instance to use to save error
@@ -101,8 +100,7 @@  discard block
 block discarded – undo
101 100
      * @param bool $detail
102 101
      * @param LoggerInterface $logger
103 102
      */
104
-    public function __construct(bool $detail, LoggerInterface $logger)
105
-    {
103
+    public function __construct(bool $detail, LoggerInterface $logger) {
106 104
         $this->detail = $detail;
107 105
         $this->logger = $logger;
108 106
         $this->errorHandler = $this->getDefaultErrorHanlder();
Please login to merge, or discard this patch.
src/Service/Provider/TemplateServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      */
70 70
     public function register(): void
71 71
     {
72
-        $this->app->bind(Configuration::class, function (ContainerInterface $app) {
72
+        $this->app->bind(Configuration::class, function(ContainerInterface $app) {
73 73
             return new Configuration($app->get(Config::class)->get('template', []));
74 74
         });
75 75
         $this->app->bind(AbstractCache::class, NullCache::class);
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 TemplateServiceProvider
62 62
  * @package Platine\Framework\Service\Provider
63 63
  */
64
-class TemplateServiceProvider extends ServiceProvider
65
-{
64
+class TemplateServiceProvider extends ServiceProvider {
66 65
 
67 66
     /**
68 67
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Service/Provider/CacheServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function register(): void
72 72
     {
73
-        $this->app->bind(Configuration::class, function (ContainerInterface $app) {
73
+        $this->app->bind(Configuration::class, function(ContainerInterface $app) {
74 74
             return new Configuration($app->get(Config::class)->get('cache', []));
75 75
         });
76 76
         $this->app->bind(AdapterInterface::class, LocalAdapter::class);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@
 block discarded – undo
63 63
  * @class CacheServiceProvider
64 64
  * @package Platine\Framework\Service\Provider
65 65
  */
66
-class CacheServiceProvider extends ServiceProvider
67
-{
66
+class CacheServiceProvider extends ServiceProvider {
68 67
 
69 68
     /**
70 69
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Helper/functions.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
      *  application instance will be returned
55 55
      * @return mixed
56 56
      */
57
-    function app(?string $identifier = null)
58
-    {
57
+    function app(?string $identifier = null) {
59 58
         $app = Application::getInstance();
60 59
 
61 60
         return $identifier ? $app->get($identifier) : $app;
Please login to merge, or discard this patch.
src/Service/Provider/SessionServiceProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,11 +71,11 @@
 block discarded – undo
71 71
     public function register(): void
72 72
     {
73 73
         $cfg = $this->app->get(Config::class)->get('session', []);
74
-        $this->app->bind(Configuration::class, function (ContainerInterface $app) use ($cfg) {
74
+        $this->app->bind(Configuration::class, function(ContainerInterface $app) use ($cfg) {
75 75
             return new Configuration($cfg);
76 76
         });
77 77
         $this->app->bind(Filesystem::class);
78
-        $this->app->bind(SessionHandlerInterface::class, function (ContainerInterface $app) {
78
+        $this->app->bind(SessionHandlerInterface::class, function(ContainerInterface $app) {
79 79
             return new LocalStorage(
80 80
                 $app->get(Filesystem::class),
81 81
                 $app->get(Configuration::class)
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 SessionServiceProvider
61 61
  * @package Platine\Framework\Service\Provider
62 62
  */
63
-class SessionServiceProvider extends ServiceProvider
64
-{
63
+class SessionServiceProvider extends ServiceProvider {
65 64
 
66 65
     /**
67 66
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Service/Provider/LoggerServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public function register(): void
69 69
     {
70
-        $this->app->bind(LoggerInterface::class, function (ContainerInterface $app) {
70
+        $this->app->bind(LoggerInterface::class, function(ContainerInterface $app) {
71 71
             $cfg = new LoggerConfiguration(
72 72
                 $app->get(Config::class)->get('logging', [])
73 73
             );
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 LoggerServiceProvider
60 60
  * @package Platine\Framework\Service\Provider
61 61
  */
62
-class LoggerServiceProvider extends ServiceProvider
63
-{
62
+class LoggerServiceProvider extends ServiceProvider {
64 63
 
65 64
     /**
66 65
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Migration/Command/MigrationCreateCommand.php 5 patches
Switch Indentation   -23 removed lines patch added patch discarded remove patch
@@ -159,26 +159,3 @@
 block discarded – undo
159 159
     private function getTemplateClass(): string
160 160
     {
161 161
         return <<<EOF
162
-        <?php
163
-        namespace Platine\Framework\Migration;
164
-
165
-        use Platine\Framework\Migration\AbstractMigration;
166
-
167
-        class %classname% extends AbstractMigration
168
-        {
169
-
170
-            public function up(): void
171
-            {
172
-              //Action when migrate up
173
-
174
-            }
175
-
176
-            public function down(): void
177
-            {
178
-              //Action when migrate down
179
-
180
-            }
181
-        }
182
-        EOF;
183
-    }
184
-}
Please login to merge, or discard this patch.
Spacing   -23 removed lines patch added patch discarded remove patch
@@ -159,26 +159,3 @@
 block discarded – undo
159 159
     private function getTemplateClass(): string
160 160
     {
161 161
         return <<<EOF
162
-        <?php
163
-        namespace Platine\Framework\Migration;
164
-
165
-        use Platine\Framework\Migration\AbstractMigration;
166
-
167
-        class %classname% extends AbstractMigration
168
-        {
169
-
170
-            public function up(): void
171
-            {
172
-              //Action when migrate up
173
-
174
-            }
175
-
176
-            public function down(): void
177
-            {
178
-              //Action when migrate down
179
-
180
-            }
181
-        }
182
-        EOF;
183
-    }
184
-}
Please login to merge, or discard this patch.
Upper-Lower-Casing   -23 removed lines patch added patch discarded remove patch
@@ -159,26 +159,3 @@
 block discarded – undo
159 159
     private function getTemplateClass(): string
160 160
     {
161 161
         return <<<EOF
162
-        <?php
163
-        namespace Platine\Framework\Migration;
164
-
165
-        use Platine\Framework\Migration\AbstractMigration;
166
-
167
-        class %classname% extends AbstractMigration
168
-        {
169
-
170
-            public function up(): void
171
-            {
172
-              //Action when migrate up
173
-
174
-            }
175
-
176
-            public function down(): void
177
-            {
178
-              //Action when migrate down
179
-
180
-            }
181
-        }
182
-        EOF;
183
-    }
184
-}
Please login to merge, or discard this patch.
Indentation   +1 added lines, -24 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     ) {
81 81
         parent::__construct($app, $repository, $config, $filesystem);
82 82
         $this->setName('migration:create')
83
-             ->setDescription('Create a new migration');
83
+                ->setDescription('Create a new migration');
84 84
 
85 85
         $this->addArgument('name', 'name of migration', null, false, true);
86 86
     }
@@ -158,26 +158,3 @@  discard block
 block discarded – undo
158 158
     private function getTemplateClass(): string
159 159
     {
160 160
         return <<<EOF
161
-        <?php
162
-        namespace Platine\Framework\Migration;
163
-
164
-        use Platine\Framework\Migration\AbstractMigration;
165
-
166
-        class %classname% extends AbstractMigration
167
-        {
168
-
169
-            public function up(): void
170
-            {
171
-              //Action when migrate up
172
-
173
-            }
174
-
175
-            public function down(): void
176
-            {
177
-              //Action when migrate down
178
-
179
-            }
180
-        }
181
-        EOF;
182
-    }
183
-}
Please login to merge, or discard this patch.
Braces   +2 added lines, -27 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
  * @template T
62 62
  * @extends AbstractCommand<T>
63 63
  */
64
-class MigrationCreateCommand extends AbstractCommand
65
-{
64
+class MigrationCreateCommand extends AbstractCommand {
66 65
 
67 66
     /**
68 67
      * The migration name
@@ -90,8 +89,7 @@  discard block
 block discarded – undo
90 89
     /**
91 90
      * {@inheritodc}
92 91
      */
93
-    public function execute()
94
-    {
92
+    public function execute() {
95 93
         $writer = $this->io()->writer();
96 94
 
97 95
         $version = date('Ymd_His');
@@ -160,26 +158,3 @@  discard block
 block discarded – undo
160 158
     private function getTemplateClass(): string
161 159
     {
162 160
         return <<<EOF
163
-        <?php
164
-        namespace Platine\Framework\Migration;
165
-
166
-        use Platine\Framework\Migration\AbstractMigration;
167
-
168
-        class %classname% extends AbstractMigration
169
-        {
170
-
171
-            public function up(): void
172
-            {
173
-              //Action when migrate up
174
-
175
-            }
176
-
177
-            public function down(): void
178
-            {
179
-              //Action when migrate down
180
-
181
-            }
182
-        }
183
-        EOF;
184
-    }
185
-}
Please login to merge, or discard this patch.
src/Service/Provider/DatabaseServiceProvider.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,17 +70,17 @@
 block discarded – undo
70 70
      */
71 71
     public function register(): void
72 72
     {
73
-        $this->app->bind(Configuration::class, function (ContainerInterface $app) {
73
+        $this->app->bind(Configuration::class, function(ContainerInterface $app) {
74 74
             /** @template T @var Config<T> $config */
75 75
             $config = $app->get(Config::class);
76 76
             $driver = $config->get('database.default', 'default');
77 77
 
78 78
             return new Configuration($config->get('database.connections.' . $driver, []));
79 79
         });
80
-        $this->app->share(Pool::class, function (ContainerInterface $app) {
80
+        $this->app->share(Pool::class, function(ContainerInterface $app) {
81 81
             return new Pool($app->get(Config::class)->get('database', []));
82 82
         });
83
-        $this->app->share(Connection::class, function (ContainerInterface $app) {
83
+        $this->app->share(Connection::class, function(ContainerInterface $app) {
84 84
             return new Connection(
85 85
                 $app->get(Configuration::class),
86 86
                 $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
@@ -62,8 +62,7 @@
 block discarded – undo
62 62
  * @class DatabaseServiceProvider
63 63
  * @package Platine\Framework\Service\Provider
64 64
  */
65
-class DatabaseServiceProvider extends ServiceProvider
66
-{
65
+class DatabaseServiceProvider extends ServiceProvider {
67 66
 
68 67
     /**
69 68
      * {@inheritdoc}
Please login to merge, or discard this patch.