Completed
Push — master ( 5960fc...363624 )
by Mike
01:30
created
tests/database/migrations/2018_06_03_202000_create_comments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('comments', function (Blueprint $table) {
10
+        Schema::create('comments', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100003_create_posts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('posts', function (Blueprint $table) {
10
+        Schema::create('posts', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
database/migrations/2019_05_10_000002_add_fields_to_action_events_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('action_events', function (Blueprint $table) {
16
+        Schema::table('action_events', function(Blueprint $table) {
17 17
             $table->text('original')->nullable();
18 18
             $table->text('changes')->nullable();
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('action_events', function (Blueprint $table) {
29
+        Schema::table('action_events', function(Blueprint $table) {
30 30
             $table->dropColumn('original', 'changes');
31 31
         });
32 32
     }
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100005_create_taggables_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('taggables', function (Blueprint $table) {
10
+        Schema::create('taggables', function(Blueprint $table) {
11 11
             $table->unsignedBigInteger('tag_id');
12 12
             $table->unsignedBigInteger('taggable_id');
13 13
             $table->string("taggable_type");
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100002_create_histories_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('histories', function (Blueprint $table) {
10
+        Schema::create('histories', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->unsignedBigInteger("user_id");
13 13
             $table->timestamps();
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100004_create_tags_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('tags', function (Blueprint $table) {
10
+        Schema::create('tags', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/migrations/2018_06_03_202001_create_images.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('images', function (Blueprint $table) {
10
+        Schema::create('images', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/database/migrations/2019_09_15_100000_create_suppliers_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('suppliers', function (Blueprint $table) {
10
+        Schema::create('suppliers', function(Blueprint $table) {
11 11
             $table->bigIncrements('id');
12 12
             $table->timestamps();
13 13
 
Please login to merge, or discard this patch.
tests/NovaTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             StoreResource::class,
30 30
         ]);
31 31
 
32
-        Nova::auth(function () {
32
+        Nova::auth(function() {
33 33
             return true;
34 34
         });
35 35
 
Please login to merge, or discard this patch.