Completed
Push — master ( 620fe4...c35a3d )
by Derek Stephen
02:47
created
src/Mvc/Controller.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Twig_Environment;
10 10
 use Twig_Extension_Debug;
11 11
 use stdClass;
12
-use Zend\Diactoros\Response;
13 12
 
14 13
 class Controller
15 14
 {
Please login to merge, or discard this patch.
src/Mvc/Router.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     /**
20 20
      *  We be needin' t' look at th' map
21
-     *  @param Request $request
21
+     *  @param RequestInterface $request
22 22
      */
23 23
     public function __construct(RequestInterface $request)
24 24
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
 
77 77
     /**
78
-     * @param array $matches
78
+     * @param string[] $matches
79 79
      */
80 80
     private function setController(array $matches)
81 81
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 
88 88
     /**
89
-     * @param array $matches
89
+     * @param string[] $matches
90 90
      */
91 91
     private function setAction(array $matches)
92 92
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
 
100 100
     /**
101
-     * @param array $matches
101
+     * @param string[] $matches
102 102
      */
103 103
     private function setVarValPairs(array $matches)
104 104
     {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Bone\Mvc;
4 4
 
5
-use Bone\Mvc\Router\Route;
6
-use Bone\Regex;
5
+use Bone\Mvc\Router\Route;
6
+use Bone\Regex;
7 7
 use Psr\Http\Message\RequestInterface;
8 8
 
9 9
 class Router
Please login to merge, or discard this patch.
src/Mvc/Dispatcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,7 @@
 block discarded – undo
7 7
 use ReflectionClass;
8 8
 use Psr\Http\Message\RequestInterface;
9 9
 use Psr\Http\Message\ResponseInterface;
10
-use Zend\Diactoros\Response;
11 10
 use Zend\Diactoros\Response\SapiEmitter;
12
-use Zend\Diactoros\Stream;
13 11
 
14 12
 /**
15 13
  * Class Dispatcher
Please login to merge, or discard this patch.