Failed Conditions
Push — master ( 75b13f...14bc7d )
by Arnold
10:01
created
src/Controller.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,8 +168,7 @@
 block discarded – undo
168 168
         $data = json_encode($data);
169 169
 
170 170
         return $this->isJsonp() ? 
171
-            $this->getRequest()->getQueryParams()['callback'] . '(' . $data . ')' : 
172
-            $data;
171
+            $this->getRequest()->getQueryParams()['callback'] . '(' . $data . ')' : $data;
173 172
     }
174 173
 
175 174
     /**
Please login to merge, or discard this patch.
src/Controller/RouteAction.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,7 @@
 block discarded – undo
40 40
 
41 41
         try {
42 42
             $args = isset($route->args) ? 
43
-                $route->args :
44
-                $this->getFunctionArgs($route, new \ReflectionMethod($this, $method));            
43
+                $route->args : $this->getFunctionArgs($route, new \ReflectionMethod($this, $method));            
45 44
         } catch (\RuntimeException $e) {
46 45
             return $this->setResponseError(400, 'Bad Request');   
47 46
         }
Please login to merge, or discard this patch.