Test Failed
Push — develop ( 12e168...c96bee )
by nguereza
02:42
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
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.
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, $repository, $config, $filesystem);
73 73
         $this->setName('migration:reset')
74
-             ->setDescription('Rollback all migration done before');
74
+                ->setDescription('Rollback all migration done before');
75 75
     }
76 76
 
77 77
     /**
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.
src/Demo/Command/RouteCommand.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * @author tony
23 23
  */
24
-class RouteCommand extends Command
25
-{
24
+class RouteCommand extends Command {
26 25
     protected Config $config;
27 26
     protected Router $router;
28 27
     protected Application $application;
@@ -30,8 +29,7 @@  discard block
 block discarded – undo
30 29
     /**
31 30
      *
32 31
      */
33
-    public function __construct(Application $application, Config $config, Router $router)
34
-    {
32
+    public function __construct(Application $application, Config $config, Router $router) {
35 33
         parent::__construct('route', 'Command to manage route');
36 34
 
37 35
         $this->addOption('-l|--list', 'Show route list', null, false);
@@ -41,8 +39,7 @@  discard block
 block discarded – undo
41 39
         $this->application = $application;
42 40
     }
43 41
 
44
-    public function execute()
45
-    {
42
+    public function execute() {
46 43
         if ($this->getOptionValue('list')) {
47 44
             $this->showRouteList();
48 45
         }
Please login to merge, or discard this patch.