Completed
Push — master ( 5aeed6...b407d8 )
by Mike
03:33
created
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 
5 5
 $dripRoute = config('genealabs-laravel-caffeine.route', 'genealabs/laravel-caffeine/drip');
6 6
 
7
-Route::get($dripRoute, Drip::class.'@drip');
7
+Route::get($dripRoute, Drip::class . '@drip');
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.
src/Providers/Service.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     {
13 13
         app('router')->group(app("router")->hasMiddlewareGroup('web')
14 14
             ? ['middleware' => 'web']
15
-            : [], function () {
15
+            : [], function() {
16 16
                 require __DIR__ . '/../../routes/web.php';
17 17
 
18 18
                 if (config("app.env") === 'internaltesting') {
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
 
56 56
     protected function shouldRegisterGlobalMiddleware() : bool
57 57
     {
58
-        return (! request()->ajax()
59
-            && ! $this->shouldRegisterRouteMiddleware()
58
+        return (!request()->ajax()
59
+            && !$this->shouldRegisterRouteMiddleware()
60 60
             && (php_sapi_name() === 'fpm-fcgi'
61 61
                 || php_sapi_name() === 'cgi-fcgi'
62 62
                 || php_sapi_name() === 'apache2handler'
Please login to merge, or discard this patch.
src/Http/Middleware/LaravelCaffeineDripMiddleware.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
         $content = $response->getContent();
14 14
 
15
-        if (! is_string($content) || strlen(trim($content)) === 0) {
15
+        if (!is_string($content) || strlen(trim($content)) === 0) {
16 16
             return $response;
17 17
         }
18 18
 
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         $metaTokenRegexp = $this->makeRegex([
35 35
             "<meta.*?name\s*=\s*[\'\"]csrf[_-]token[\'\"]",
36 36
         ]);
37
-        $hasNoFormToken = ! preg_match($formTokenRegexp, $content);
38
-        $hasNoMetaToken = ! preg_match($metaTokenRegexp, $content);
37
+        $hasNoFormToken = !preg_match($formTokenRegexp, $content);
38
+        $hasNoMetaToken = !preg_match($metaTokenRegexp, $content);
39 39
 
40 40
         if ($hasNoFormToken && $hasNoMetaToken) {
41 41
             return $response;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $dripper = (new Dripper);
45 45
         $content = preg_replace('/(<\/html>)\s*\z/', $dripper->html . "</html>", $content);
46 46
 
47
-        if (! preg_match_all('/(<\/html>)\s*\z/', $content, $matches)) {
47
+        if (!preg_match_all('/(<\/html>)\s*\z/', $content, $matches)) {
48 48
             $content .= $dripper->html;
49 49
         }
50 50
 
Please login to merge, or discard this patch.