Completed
Push — master ( 90898c...c595a2 )
by CodexShaper
13:36
created
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_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.
database/seeds/DatabaseManagerSeeder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
         foreach ($seeds as $class) {
21 21
             $file = $this->seedersPath.$class.'.php';
22
-            if (file_exists($file) && ! class_exists($class)) {
22
+            if (file_exists($file) && !class_exists($class)) {
23 23
                 require_once $file;
24 24
             }
25 25
             with(new $class())->run();
Please login to merge, or discard this patch.
database/migrations/2019_08_27_165403_create_menu_items_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('menu_items', function (Blueprint $table) {
16
+        Schema::create('menu_items', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('menu_id');
19 19
             $table->string('title');
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.