Completed
Push — master ( cc01fd...c570ee )
by Oscar
04:59
created
src/Controllers/InsertEntity.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Folk\Controllers;
4 4
 
5 5
 use Psr\Http\Message\ServerRequestInterface as Request;
6
-use Psr\Http\Message\ResponseInterface as Response;
7
-use Folk\Admin;
8 6
 
9 7
 class InsertEntity extends Entity
10 8
 {
Please login to merge, or discard this patch.
src/Controllers/Index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
     {
87 87
         $query = $request->getQueryParams();
88 88
         $thumbs = $this->app->getPath($query['thumbs']);
89
-        $limit = empty($query['limit']) ? 100 : (int) $query['limit'];
90
-        $offset = empty($query['offset']) ? 0 : (int) $query['offset'];
89
+        $limit = empty($query['limit']) ? 100 : (int)$query['limit'];
90
+        $offset = empty($query['offset']) ? 0 : (int)$query['offset'];
91 91
         $pattern = empty($query['pattern']) ? '/*' : $query['pattern'];
92 92
 
93 93
         $files = [];
Please login to merge, or discard this patch.