Passed
Pull Request — master (#77)
by
unknown
03:17
created
database/migrations/cruds_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function up()
23 23
     {
24
-        Schema::create(config('easy_panel.database.crud_table'), function (Blueprint $table) {
24
+        Schema::create(config('easy_panel.database.crud_table'), function(Blueprint $table) {
25 25
             $table->id();
26 26
             $table->string('name')->unique();
27 27
             $table->string('model')->unique();
Please login to merge, or discard this patch.
database/migrations/panel_admins_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function up()
22 22
     {
23
-        Schema::create(config('easy_panel.database.panel_admin_table'), function (Blueprint $table) {
23
+        Schema::create(config('easy_panel.database.panel_admin_table'), function(Blueprint $table) {
24 24
             $table->id();
25 25
             $table->foreignId('user_id')->constrained();
26 26
             $table->boolean('is_superuser');
Please login to merge, or discard this patch.