Completed
Push — master ( f6f21a...97b7b4 )
by Oscar
05:30
created
src/Controllers/Index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +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 6
 use Folk\Admin;
8 7
 use Imagecow\Image;
9 8
 use Middlewares\Utils\Factory;
Please login to merge, or discard this patch.
src/Controllers/InsertEntity.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +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 6
 use Folk\Admin;
8 7
 
9 8
 class InsertEntity extends Entity
Please login to merge, or discard this patch.
demo/Entities/Items.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Demo\Entities;
4 4
 
5 5
 use Psr\Http\Message\UploadedFileInterface;
6
-
7 6
 use Folk\Entities\Json;
8 7
 use Folk\Formats\Group;
9 8
 use Folk\Formats\FormatFactory;
Please login to merge, or discard this patch.
src/Admin.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Use the app as a middleware component.
35 35
      *
36
-     * @param ServerRequestInterface $request
36
+     * @param \Psr\Http\Message\ServerRequestInterface $request
37 37
      * @param DelegateInterface      $delegate
38 38
      *
39
-     * @return ResponseInterface
39
+     * @return \Psr\Http\Message\ResponseInterface
40 40
      */
41 41
     public function process(ServerRequestInterface $request, DelegateInterface $delegate)
42 42
     {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @return ResponseInterface
47
+     * @return \Psr\Http\Message\ResponseInterface
48 48
      */
49 49
     public function __invoke(ServerRequestInterface $request): ResponseInterface
50 50
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Fol\{App, NotFoundException};
6 6
 use Folk\Entities\EntityInterface;
7
-use Folk\Entities\SingleEntityInterface;
8 7
 use Psr\Http\Message\{ServerRequestInterface, ResponseInterface, UriInterface};
9 8
 use Interop\Http\ServerMiddleware\MiddlewareInterface;
10 9
 use Interop\Http\ServerMiddleware\DelegateInterface;
11
-use Zend\Diactoros\Response;
12
-use Relay\RelayBuilder;
13 10
 
14 11
 /**
15 12
  * Main manager.
Please login to merge, or discard this patch.
src/Entities/File.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Folk\Entities;
4 4
 
5 5
 use Folk\SearchQuery;
6
-use SimpleCrud\Row;
7 6
 use FilesystemIterator;
8 7
 use RecursiveDirectoryIterator;
9 8
 use Exception;
Please login to merge, or discard this patch.