Completed
Push — master ( da4f94...b9be26 )
by Bohuslav
02:51
created
src/Matcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
         $parameters = $this->_extractVariableRouteParts($route);
229 229
         if (isset($parameters)) {
230 230
             foreach ($parameters as $variables) {
231
-                list($valueToReplace, , $parametersVariables) = array_pad($variables, 3, null);
231
+                list($valueToReplace,, $parametersVariables) = array_pad($variables, 3, null);
232 232
                 if (isset($parametersVariables)) {
233 233
                     $route = str_replace($valueToReplace, '('.reset($parametersVariables).')', $route);
234 234
                 } else {
Please login to merge, or discard this patch.
src/Dispatchers/DispatcherClass.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -174,7 +174,6 @@  discard block
 block discarded – undo
174 174
      * @param mixed $parameters route parameters  
175 175
      * @param mixed $handler    handler that should be executed
176 176
      * @param mixed $matches    found matched variables
177
-
178 177
      * @return mixed
179 178
      */
180 179
     private function _resolveNamespace($parameters, $handler, $matches) {
@@ -221,7 +220,6 @@  discard block
 block discarded – undo
221 220
      * @param mixed $matches    found matched variables
222 221
      * @param mixed $parameters route parameters  
223 222
      * @param mixed $handlers   handler that should be executed
224
-
225 223
      * @return mixed
226 224
      */
227 225
     private function _getFunctionArgumentsControlers($paramMap, $matches, $parameters, $handlers) {
Please login to merge, or discard this patch.