@@ -312,8 +312,7 @@ |
||
312 | 312 | $reflectionMethod = $this->xReflectionClass->getMethod($sMethodName); |
313 | 313 | $reflectionMethod->setAccessible(true); // Make it possible to call protected methods |
314 | 314 | $xRegisteredObject = $this->getRegisteredObject(); |
315 | - (!$xResponse) ? $reflectionMethod->invoke($xRegisteredObject) : |
|
316 | - $reflectionMethod->invoke($xRegisteredObject, $xResponse); |
|
315 | + (!$xResponse) ? $reflectionMethod->invoke($xRegisteredObject) : $reflectionMethod->invoke($xRegisteredObject, $xResponse); |
|
317 | 316 | } |
318 | 317 | } |
319 | 318 |