@@ -4,13 +4,13 @@ |
||
4 | 4 | use GeneaLabs\LaravelCaffeine\Http\Controllers\Test; |
5 | 5 | |
6 | 6 | $dripRoute = config('genealabs-laravel-caffeine.route', 'genealabs/laravel-caffeine/drip'); |
7 | -Route::get($dripRoute, Drip::class.'@drip'); |
|
7 | +Route::get($dripRoute, Drip::class . '@drip'); |
|
8 | 8 | |
9 | 9 | Route::group([ |
10 | 10 | 'middleware' => ['web'], |
11 | 11 | 'as' => 'genealabs-laravel-caffeine.', |
12 | 12 | 'prefix' => 'tests' |
13 | -], function () { |
|
13 | +], function() { |
|
14 | 14 | Route::any('form', Test::class . '@drippedForm') |
15 | 15 | ->name('tests.form'); |
16 | 16 | Route::any('dripped-form', Test::class . '@drippedForm'); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | $content = $response->getContent(); |
14 | 14 | |
15 | - if (! is_string($content)) { |
|
15 | + if (!is_string($content)) { |
|
16 | 16 | return $response; |
17 | 17 | } |
18 | 18 | |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | '<meta\s+', |
36 | 36 | 'name\s*=\s*[\'"]csrf[_-]token[\'"]', |
37 | 37 | ]); |
38 | - $hasNoFormToken = ! preg_match($formTokenRegexp, $content); |
|
39 | - $hasNoMetaToken = ! preg_match($metaTokenRegexp, $content); |
|
38 | + $hasNoFormToken = !preg_match($formTokenRegexp, $content); |
|
39 | + $hasNoMetaToken = !preg_match($metaTokenRegexp, $content); |
|
40 | 40 | |
41 | 41 | if ($hasNoFormToken && $hasNoMetaToken) { |
42 | 42 | return $response; |