Completed
Push — master ( 347d11...ebd5ef )
by Mike
10:00 queued 04:34
created
tests/BrowserTestCase.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 
14 14
     public static function tearDownAfterClass()
15 15
     {
16
-         static::stopServing();
16
+            static::stopServing();
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
tests/Browser/DripTest.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 testFormDoesntExpire()
9 9
     {
10
-        $this->browse(function (Browser $browser) {
10
+        $this->browse(function(Browser $browser) {
11 11
             $response = $browser->visit('tests/form');
12 12
             
13 13
             $response->assertSee('Test Form');
Please login to merge, or discard this patch.
tests/routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
     'as' => 'genealabs-laravel-caffeine.',
6 6
     'prefix' => 'tests',
7 7
     'namespace' => 'GeneaLabs\LaravelCaffeine\Tests\Http\Controllers',
8
-], function () {
8
+], function() {
9 9
     Route::any('form', 'Test@drippedForm')
10 10
         ->name('tests.form');
11 11
     Route::any('dripped-form', 'Test@drippedForm');
Please login to merge, or discard this patch.