Passed
Push — master ( d3e8aa...86cfdb )
by nguereza
05:36 queued 03:09
created
config/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 use Platine\App\Http\Action\HomeAction;
4 4
 use Platine\Route\Router;
5 5
 
6
-return [static function (Router $router): void {
6
+return [static function(Router $router): void {
7 7
     $router->get('/', HomeAction::class, 'home');
8 8
 }];
Please login to merge, or discard this patch.
storage/migrations/20210705_065247_add_roles_table.php 1 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.
storage/migrations/20210705_065248_add_users_table.php 1 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('users', function (CreateTable $table) {
13
+        $this->create('users', function(CreateTable $table) {
14 14
             $table->integer('id')
15 15
                   ->autoincrement()
16 16
                  ->primary();
Please login to merge, or discard this patch.
storage/migrations/20210717_094822_add_permission_roles_table.php 1 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('permissions_roles', function (CreateTable $table) {
13
+        $this->create('permissions_roles', function(CreateTable $table) {
14 14
             $table->integer('permission_id');
15 15
             $table->integer('role_id');
16 16
 
Please login to merge, or discard this patch.
storage/migrations/20210823_152146_add_api_tokens_table.php 1 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('tokens', function (CreateTable $table) {
13
+        $this->create('tokens', function(CreateTable $table) {
14 14
             $table->integer('id')
15 15
               ->autoincrement()
16 16
              ->primary();
Please login to merge, or discard this patch.
storage/migrations/20210717_094547_add_permissions_table.php 1 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('permissions', function (CreateTable $table) {
13
+        $this->create('permissions', function(CreateTable $table) {
14 14
             $table->integer('id')
15 15
                   ->autoincrement()
16 16
                  ->primary();
Please login to merge, or discard this patch.
storage/migrations/20220109_074106_add_configuration_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
       //Action when migrate up
15
-        $this->create('configurations', function (CreateTable $table) {
15
+        $this->create('configurations', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                  ->primary();
Please login to merge, or discard this patch.
storage/migrations/20220323_095520_add_audits_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
       //Action when migrate up
15
-        $this->create('audits', function (CreateTable $table) {
15
+        $this->create('audits', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                  ->primary();
Please login to merge, or discard this patch.
storage/migrations/20210717_100434_add_role_users_table.php 1 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_users', function (CreateTable $table) {
13
+        $this->create('roles_users', function(CreateTable $table) {
14 14
             $table->integer('user_id');
15 15
             $table->integer('role_id');
16 16
 
Please login to merge, or discard this patch.