Test Failed
Push — develop ( bd77d0...12e168 )
by nguereza
03:10
created
src/Migration/MigrationEntity.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
  * class MigrationEntity
57 57
  * @package Platine\Framework\Migration
58 58
  */
59
-class MigrationEntity extends Entity
60
-{
59
+class MigrationEntity extends Entity {
61 60
 
62 61
     /**
63 62
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Migration/MigrationRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,15 +54,13 @@
 block discarded – undo
54 54
  * class MigrationRepository
55 55
  * @package Platine\Framework\Migration
56 56
  */
57
-class MigrationRepository extends Repository
58
-{
57
+class MigrationRepository extends Repository {
59 58
 
60 59
     /**
61 60
      * Create new instance
62 61
      * @param EntityManager $manager
63 62
      */
64
-    public function __construct(EntityManager $manager)
65
-    {
63
+    public function __construct(EntityManager $manager) {
66 64
         parent::__construct($manager, MigrationEntity::class);
67 65
     }
68 66
 }
Please login to merge, or discard this patch.
src/Demo/Command/ConfigCommand.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,16 +18,14 @@  discard block
 block discarded – undo
18 18
  *
19 19
  * @author tony
20 20
  */
21
-class ConfigCommand extends Command
22
-{
21
+class ConfigCommand extends Command {
23 22
 
24 23
     protected Application $application;
25 24
 
26 25
     /**
27 26
      *
28 27
      */
29
-    public function __construct(Application $application)
30
-    {
28
+    public function __construct(Application $application) {
31 29
         parent::__construct('config', 'Command to manage configuration');
32 30
 
33 31
         $this->addOption('-l|--list', 'List the configuration', '', false);
@@ -36,8 +34,7 @@  discard block
 block discarded – undo
36 34
         $this->application = $application;
37 35
     }
38 36
 
39
-    public function execute()
40
-    {
37
+    public function execute() {
41 38
         if ($this->getOptionValue('list')) {
42 39
             $this->showConfigList();
43 40
         }
Please login to merge, or discard this patch.
src/Migration/Command/MigrationResetCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     ) {
74 74
         parent::__construct($app, $repository, $schema, $config, $filesystem);
75 75
         $this->setName('migration:reset')
76
-             ->setDescription('Rollback all migration done before');
76
+                ->setDescription('Rollback all migration done before');
77 77
     }
78 78
 
79 79
     /**
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
  * class MigrationResetCommand
58 58
  * @package Platine\Framework\Migration\Command
59 59
  */
60
-class MigrationResetCommand extends AbstractCommand
61
-{
60
+class MigrationResetCommand extends AbstractCommand {
62 61
 
63 62
     /**
64 63
      * Create new instance
@@ -79,8 +78,7 @@  discard block
 block discarded – undo
79 78
     /**
80 79
      * {@inheritodc}
81 80
      */
82
-    public function execute()
83
-    {
81
+    public function execute() {
84 82
         $io = $this->io();
85 83
         $writer = $io->writer();
86 84
         $writer->boldYellow('ALL MIGRATION ROLLBACK', true)->eol();
Please login to merge, or discard this patch.
src/Migration/Command/MigrationExecuteCommand.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     ) {
75 75
         parent::__construct($app, $repository, $schema, $config, $filesystem);
76 76
         $this->setName('migration:exec')
77
-             ->setDescription('Execute the migration up/down for one version');
77
+                ->setDescription('Execute the migration up/down for one version');
78 78
 
79 79
         $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function ($val) {
80 80
             if (!in_array($val, ['up', 'down'])) {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                 ));
85 85
             }
86 86
 
87
-             return $val;
87
+                return $val;
88 88
         });
89 89
     }
90 90
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $this->setName('migration:exec')
77 77
              ->setDescription('Execute the migration up/down for one version');
78 78
 
79
-        $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function ($val) {
79
+        $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function($val) {
80 80
             if (!in_array($val, ['up', 'down'])) {
81 81
                 throw new RuntimeException(sprintf(
82 82
                     'Invalid argument type [%s], must be one of [up, down]',
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             } else {
119 119
                 $data = [];
120 120
                 foreach ($executed as $version => $entity) {
121
-                    $data[(string)$version] = $entity->description;
121
+                    $data[(string) $version] = $entity->description;
122 122
                 }
123 123
                 $version = $io->choice('Choose which version to rollback', $data);
124 124
                 $description = str_replace('_', ' ', $data[$version]);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
58 58
  * class MigrationExecuteCommand
59 59
  * @package Platine\Framework\Migration\Command
60 60
  */
61
-class MigrationExecuteCommand extends AbstractCommand
62
-{
61
+class MigrationExecuteCommand extends AbstractCommand {
63 62
 
64 63
     /**
65 64
      * Create new instance
@@ -91,8 +90,7 @@  discard block
 block discarded – undo
91 90
     /**
92 91
      * {@inheritodc}
93 92
      */
94
-    public function execute()
95
-    {
93
+    public function execute() {
96 94
         $type = $this->getArgumentValue('type');
97 95
 
98 96
         $io = $this->io();
Please login to merge, or discard this patch.
storage/migrations/20210705_065247_add_roles_table.php 3 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -9,26 +9,26 @@
 block discarded – undo
9 9
 
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
13
-      $this->create('roles', function (CreateTable $table) {
14
-          $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
17
-          $table->string('description')
18
-                 ->description('The role description');
19
-          $table->datetime('created_at')
20
-                  ->description('role created at')
21
-                  ->notNull();
22
-          $table->datetime('updated_at')
23
-                  ->description('role updated at');
12
+        //Action when migrate up
13
+        $this->create('roles', function (CreateTable $table) {
14
+            $table->integer('id')
15
+                    ->autoincrement()
16
+                    ->primary();
17
+            $table->string('description')
18
+                    ->description('The role description');
19
+            $table->datetime('created_at')
20
+                    ->description('role created at')
21
+                    ->notNull();
22
+            $table->datetime('updated_at')
23
+                    ->description('role updated at');
24 24
 
25
-          $table->engine('INNODB');
26
-      });
25
+            $table->engine('INNODB');
26
+        });
27 27
     }
28 28
 
29 29
     public function down(): void
30 30
     {
31
-      //Action when migrate down
32
-      $this->drop('roles');
31
+        //Action when migrate down
32
+        $this->drop('roles');
33 33
     }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     public function up(): void
11 11
     {
12 12
       //Action when migrate up
13
-      $this->create('roles', function (CreateTable $table) {
13
+      $this->create('roles', function(CreateTable $table) {
14 14
           $table->integer('id')
15 15
                   ->autoincrement()
16 16
                  ->primary();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 use Platine\Database\Schema\CreateTable;
5 5
 use Platine\Framework\Migration\AbstractMigration;
6 6
 
7
-class AddRolesTable20210705065247 extends AbstractMigration
8
-{
7
+class AddRolesTable20210705065247 extends AbstractMigration {
9 8
 
10 9
     public function up(): void
11 10
     {
Please login to merge, or discard this patch.
storage/migrations/20210705_065339_add_roles_code_field.php 3 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,18 +9,18 @@
 block discarded – undo
9 9
 
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
13
-      $this->alter('roles', function (AlterTable $table) {
14
-          $table->string('code')->notNull();
15
-          $table->unique('code');
16
-      });
12
+        //Action when migrate up
13
+        $this->alter('roles', function (AlterTable $table) {
14
+            $table->string('code')->notNull();
15
+            $table->unique('code');
16
+        });
17 17
     }
18 18
 
19 19
     public function down(): void
20 20
     {
21
-      //Action when migrate down
22
-      $this->alter('roles', function (AlterTable $table) {
23
-          $table->dropColumn('code');
24
-      });
21
+        //Action when migrate down
22
+        $this->alter('roles', function (AlterTable $table) {
23
+            $table->dropColumn('code');
24
+        });
25 25
     }
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     public function up(): void
11 11
     {
12 12
       //Action when migrate up
13
-      $this->alter('roles', function (AlterTable $table) {
13
+      $this->alter('roles', function(AlterTable $table) {
14 14
           $table->string('code')->notNull();
15 15
           $table->unique('code');
16 16
       });
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function down(): void
20 20
     {
21 21
       //Action when migrate down
22
-      $this->alter('roles', function (AlterTable $table) {
22
+      $this->alter('roles', function(AlterTable $table) {
23 23
           $table->dropColumn('code');
24 24
       });
25 25
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 use Platine\Database\Schema\AlterTable;
5 5
 use Platine\Framework\Migration\AbstractMigration;
6 6
 
7
-class AddRolesCodeField20210705065339 extends AbstractMigration
8
-{
7
+class AddRolesCodeField20210705065339 extends AbstractMigration {
9 8
 
10 9
     public function up(): void
11 10
     {
Please login to merge, or discard this patch.
src/Service/Provider/DatabaseConfigServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      */
66 66
     public function register(): void
67 67
     {
68
-        $this->app->share(DbConfig::class, function (ContainerInterface $app) {
68
+        $this->app->share(DbConfig::class, function(ContainerInterface $app) {
69 69
             $env = $app->get(Config::class)->get('app.env', '');
70 70
             return new DbConfig($app->get(QueryBuilder::class), $env);
71 71
         });
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * class DatabaseConfigServiceProvider
58 58
  * @package Platine\Framework\Service\Provider
59 59
  */
60
-class DatabaseConfigServiceProvider extends ServiceProvider
61
-{
60
+class DatabaseConfigServiceProvider extends ServiceProvider {
62 61
 
63 62
     /**
64 63
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Demo/Action/User/ListAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,7 @@
 block discarded – undo
15 15
  *
16 16
  * @author tony
17 17
  */
18
-class ListAction implements RequestHandlerInterface
19
-{
18
+class ListAction implements RequestHandlerInterface {
20 19
     protected UserRepository $userRepository;
21 20
     protected Template $template;
22 21
     protected DbConfig $dbConfig;
Please login to merge, or discard this patch.