Passed
Push — master ( 72f46d...eaab0b )
by Iman
06:11
created
src/Responder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function view($view, $data = [], $status = 200, array $headers = [])
44 44
     {
45
-        respondWith(response()->view($view, $data, $status, $headers ));
45
+        respondWith(response()->view($view, $data, $status, $headers));
46 46
     }
47 47
 
48 48
     /**
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     public function streamDownload($callback, $name = null, array $headers = [], $disposition = 'attachment')
100 100
     {
101
-        respondWith(response()->streamDownload($callback, $name, $headers, $disposition ));
101
+        respondWith(response()->streamDownload($callback, $name, $headers, $disposition));
102 102
     }
103 103
 
104 104
     /**
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function download($file, $name = null, array $headers = [], $disposition = 'attachment')
114 114
     {
115
-        respondWith(response()->download($file, $name, $headers, $disposition ));
115
+        respondWith(response()->download($file, $name, $headers, $disposition));
116 116
     }
117 117
 
118 118
     /**
Please login to merge, or discard this patch.