Passed
Push — dev5 ( b5930c...096006 )
by Ron
08:23
created
app/Http/Controllers/DownloadController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,10 +147,10 @@
 block discarded – undo
147 147
 
148 148
         //  Begin the file download.  File is broken into sections to better be handled by browser
149 149
         set_time_limit(0);
150
-        $file = fopen($path,"rb");
150
+        $file = fopen($path, "rb");
151 151
         while(!feof($file))
152 152
         {
153
-            print(@fread($file, 1024*8));
153
+            print(@fread($file, 1024 * 8));
154 154
             ob_flush();
155 155
             flush();
156 156
         }
Please login to merge, or discard this patch.