Passed
Push — master ( 9f2d6b...0d3fe1 )
by CodexShaper
05:59
created
database/seeds/DatabaseManagerSeeder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 class DatabaseManagerSeeder extends Seeder
6 6
 {
7
-    protected $seedersPath = __DIR__ . '/../../database/seeds/';
7
+    protected $seedersPath = __DIR__.'/../../database/seeds/';
8 8
     /**
9 9
      * Seed the application's database.
10 10
      *
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
         foreach ($seeds as $class) {
21 21
 
22
-            $file = $this->seedersPath . $class . '.php';
22
+            $file = $this->seedersPath.$class.'.php';
23 23
             if (file_exists($file) && !class_exists($class)) {
24 24
                 require_once $file;
25 25
             }
Please login to merge, or discard this patch.
database/migrations/2019_11_24_123318_create_dbm_permissions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_permissions', function (Blueprint $table) {
16
+        Schema::create('dbm_permissions', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2019_10_28_125735_create_dbm_templates_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_templates', function (Blueprint $table) {
16
+        Schema::create('dbm_templates', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->string('old_name');
Please login to merge, or discard this patch.
database/migrations/2019_11_24_123318_create_dbm_user_permissions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_user_permissions', function (Blueprint $table) {
16
+        Schema::create('dbm_user_permissions', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->bigInteger("user_id");
19 19
             $table->bigInteger("dbm_permission_id");
Please login to merge, or discard this patch.
database/migrations/2019_10_28_125735_create_dbm_fields_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_fields', function (Blueprint $table) {
16
+        Schema::create('dbm_fields', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->bigInteger('dbm_object_id')->unsigned();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2019_12_04_221605_create_dbm_collections_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_collections', function (Blueprint $table) {
16
+        Schema::create('dbm_collections', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name')->unique();
19 19
             $table->string('old_name');
Please login to merge, or discard this patch.
database/migrations/2019_10_28_125735_create_dbm_objects_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_objects', function (Blueprint $table) {
16
+        Schema::create('dbm_objects', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->string('slug')->unique();
Please login to merge, or discard this patch.
migrations/2019_12_04_221758_create_dbm_collection_fields_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('dbm_collection_fields', function (Blueprint $table) {
16
+        Schema::create('dbm_collection_fields', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->bigInteger('dbm_collection_id');
19 19
             $table->string('name');
Please login to merge, or discard this patch.
src/Database/Types/Postgresql/SmallIntType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 
17 17
         $type = $field['autoincrement'] ? 'smallserial' : 'smallint';
18 18
 
19
-        return $type . $commonIntegerTypeDeclaration;
19
+        return $type.$commonIntegerTypeDeclaration;
20 20
     }
21 21
 }
Please login to merge, or discard this patch.