Completed
Push — master ( 47a35a...16309c )
by Samuel
02:15
created
src/Api.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     /**
155 155
      * Get service by type or name from container
156 156
      * @param string $entry
157
-     * @return bool|object
157
+     * @return Handler\BaseHandler
158 158
      */
159 159
     private function getFromContainer($entry)
160 160
     {
Please login to merge, or discard this patch.
src/Route/BaseRouteResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         array_shift($values);
56 56
 
57 57
         $routeParams = $route->getParams();
58
-        $result = array_filter($values, function ($param) use ($routeParams) {
58
+        $result = array_filter($values, function($param) use ($routeParams) {
59 59
             return in_array($param, $routeParams, true);
60 60
         }, ARRAY_FILTER_USE_KEY);
61 61
 
Please login to merge, or discard this patch.