@@ -126,7 +126,7 @@ |
||
126 | 126 | $defaultValue = null; |
127 | 127 | $isDefaultValueAvailable = $parameter->isDefaultValueAvailable(); |
128 | 128 | if ($isDefaultValueAvailable) { |
129 | - $defaultValue = var_export($parameter->getDefaultValue(), true); |
|
129 | + $defaultValue = var_export($parameter->getDefaultValue(), true); |
|
130 | 130 | } elseif ($parameter->isOptional()) { |
131 | 131 | $defaultValue = 'null'; |
132 | 132 | } |
@@ -39,9 +39,9 @@ |
||
39 | 39 | public function beforeMethodExecution(MethodInvocation $invocation) |
40 | 40 | { |
41 | 41 | echo 'Calling Before Interceptor for ', |
42 | - $invocation, |
|
43 | - ' with arguments: ', |
|
44 | - json_encode($invocation->getArguments()), |
|
45 | - PHP_EOL; |
|
42 | + $invocation, |
|
43 | + ' with arguments: ', |
|
44 | + json_encode($invocation->getArguments()), |
|
45 | + PHP_EOL; |
|
46 | 46 | } |
47 | 47 | } |