Completed
Push — master ( d23a6e...ee421f )
by Jake
02:52
created
phpunit.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
 */ 
37 37
 $capsule = new Capsule; 
38 38
 $capsule->addConnection([ 
39
- 'driver'   => 'sqlite', 
40
- 'database' => ':memory:', 
39
+    'driver'   => 'sqlite', 
40
+    'database' => ':memory:', 
41 41
 ]); 
42 42
 $capsule->setEventDispatcher(new Dispatcher); 
43 43
 $capsule->setAsGlobal(); 
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 $capsule->schema()->dropIfExists('models'); 
47 47
 
48 48
 $capsule->schema()->create('models', function (Blueprint $table) { 
49
-   $table->increments('id'); 
50
-   $table->string('string'); 
51
-   $table->string('email'); 
52
-   $table->timestamps(); 
49
+    $table->increments('id'); 
50
+    $table->string('string'); 
51
+    $table->string('email'); 
52
+    $table->timestamps(); 
53 53
 }); 
Please login to merge, or discard this patch.
tests/AdminControllerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         //      ->see('Waddup, y\'all');
47 47
         // $this->assertTrue(true);
48 48
         $this->call('GET', 'admin')->see('Waddup, y\'all');
49
-       // $this->assertFalse($request);
49
+        // $this->assertFalse($request);
50 50
     }
51 51
     
52 52
     public function test_redirects_to_login_if_user_is_not_authenticated ()
Please login to merge, or discard this patch.