@@ -70,7 +70,7 @@ |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | - * @param mixed $candidate |
|
| 73 | + * @param string $candidate |
|
| 74 | 74 | * @param RenderingContextInterface $renderingContext |
| 75 | 75 | * @return mixed |
| 76 | 76 | */ |
@@ -377,7 +377,7 @@ |
||
| 377 | 377 | if (!$booleanStack[0] instanceof NodeInterface) { |
| 378 | 378 | return [ |
| 379 | 379 | 'initialization' => '', |
| 380 | - 'execution' => $booleanStack[0] && strtolower((string)$booleanStack[0]) !== 'false' ? 'true' : 'false', |
|
| 380 | + 'execution' => $booleanStack[0] && strtolower((string) $booleanStack[0]) !== 'false' ? 'true' : 'false', |
|
| 381 | 381 | ]; |
| 382 | 382 | } |
| 383 | 383 | |