Passed
Push — develop ( 5cd5e7...ec03b4 )
by nguereza
03:11
created
src/Http/Response/FileResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
         $this->headers['Content-Description'] = ['File Transfer'];
84 84
         $this->headers['Content-Type'] = [$mimetype];
85
-        $this->headers['Content-Disposition'] = ['attachment; filename="' . $filename  . '"'];
85
+        $this->headers['Content-Disposition'] = ['attachment; filename="' . $filename . '"'];
86 86
         $this->headers['Expires'] = ['0'];
87 87
         $this->headers['Cache-Control'] = ['must-revalidate'];
88 88
         $this->headers['Pragma'] = ['public'];
Please login to merge, or discard this patch.
src/Demo/Action/User/ListAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
                                             ->filter($filters)
125 125
                                             ->count('id');
126 126
 
127
-        $currentPage = (int)$param->get('page', 1);
127
+        $currentPage = (int) $param->get('page', 1);
128 128
         $this->pagination->setTotalItems($totalItems)
129 129
                          ->setCurrentPage($currentPage);
130 130
         $limit = $this->pagination->getItemsPerPage();
Please login to merge, or discard this patch.