Completed
Push — master ( a669fb...465a84 )
by Mario
05:01
created
tests/database/migrations/2018_17_01_000002_create_uploads_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         Schema::create(
17
-            'uploads', function (Blueprint $table) {
17
+            'uploads', function(Blueprint $table) {
18 18
                 $table->increments('id');
19 19
                 $table->unsignedInteger('user_id')->nullable();
20 20
                 $table->string('location');
Please login to merge, or discard this patch.
tests/ResourceControllerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
         $this->json('GET', '/test')
24 24
             ->assertStatus(200);
25
-             //->assertJsonCount(3, 'data');
25
+                //->assertJsonCount(3, 'data');
26 26
     }
27 27
 
28 28
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $this->json('GET', '/test2')
43 43
             ->assertStatus(200);
44
-             //->assertJsonCount(3, 'data');
44
+                //->assertJsonCount(3, 'data');
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.