Completed
Push — develop ( 3c50bf...126c89 )
by Stan
02:00
created
src/Middleware/ServerPush.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $crawler = new Crawler($response->content());
61 61
 
62 62
         $content = $crawler->filter('link, script[src], img[src]')
63
-                           ->extract(['src', 'href']);
63
+                            ->extract(['src', 'href']);
64 64
 
65 65
         // TODO: Ordering might be necessary for manifest files due to https://laravel.com/docs/5.5/mix#vendor-extraction
66 66
         return collect($content)->flatten(1)
Please login to merge, or discard this patch.
src/Response.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
         if ($push !== null) {
22 22
             $this->header('Link', $push->getLink())
23
-                 ->withCookie($push->getCookie());
23
+                    ->withCookie($push->getCookie());
24 24
         }
25 25
 
26 26
         return $this;
Please login to merge, or discard this patch.