@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * @param array<array> $vn variable name array. |
166 | 166 | * @param array<string,array|string|integer> $context current compile context |
167 | 167 | * |
168 | - * @return array<string|array> variable names |
|
168 | + * @return string variable names |
|
169 | 169 | * |
170 | 170 | * @expect array('array(array($in),array())', array('this')) when input array(null), array('flags'=>array('spvar'=>true)) |
171 | 171 | * @expect array('array(array($in,$in),array())', array('this', 'this')) when input array(null, null), array('flags'=>array('spvar'=>true)) |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
193 | 193 | * @param array<string,array|string|integer> $context current compile context |
194 | 194 | * |
195 | - * @return array<string> code representing passed expression |
|
195 | + * @return string[] code representing passed expression |
|
196 | 196 | */ |
197 | 197 | public static function compileSubExpression($vars, &$context) { |
198 | 198 | $origSeperator = $context['ops']['seperator']; |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
470 | 470 | * @param boolean $isEach the section is #each |
471 | 471 | * |
472 | - * @return string|null Return compiled code segment for the token |
|
472 | + * @return string Return compiled code segment for the token |
|
473 | 473 | */ |
474 | 474 | protected static function section(&$context, $vars, $isEach = false) { |
475 | 475 | if ($isEach) { |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | * @param array<string,array|string|integer> $context current compile context |
490 | 490 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
491 | 491 | * |
492 | - * @return string|null Return compiled code segment for the token |
|
492 | + * @return string Return compiled code segment for the token |
|
493 | 493 | */ |
494 | 494 | protected static function with(&$context, $vars) { |
495 | 495 | $v = isset($vars[1]) ? static::getVariableNameOrSubExpression($vars[1], $context) : array(null, array()); |
@@ -454,9 +454,9 @@ discard block |
||
454 | 454 | * |
455 | 455 | * @param array<string,array|string|integer> $context current compile context |
456 | 456 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
457 | - * @param string|null $matchop should also match to this operator |
|
457 | + * @param string $match should also match to this operator |
|
458 | 458 | * |
459 | - * @return boolean Return true |
|
459 | + * @return null|boolean Return true |
|
460 | 460 | */ |
461 | 461 | protected static function blockEnd(&$context, &$vars, $match = null) { |
462 | 462 | $context['level']--; |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | * @param array<string,array|string|integer> $context current compile context |
679 | 679 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
680 | 680 | * |
681 | - * @return boolean Return true when it is custom helper |
|
681 | + * @return boolean|null Return true when it is custom helper |
|
682 | 682 | */ |
683 | 683 | public static function lookup(&$context, $vars) { |
684 | 684 | if (isset($vars[0][0]) && ($vars[0][0] === 'lookup')) { |
@@ -742,7 +742,7 @@ discard block |
||
742 | 742 | * @param array<string,array|string|integer> $context current compile context |
743 | 743 | * @param array<boolean|integer|string|array> $vars parsed arguments list |
744 | 744 | * |
745 | - * @return boolean Return true always |
|
745 | + * @return boolean|null Return true always |
|
746 | 746 | */ |
747 | 747 | protected static function inline(&$context, $vars) { |
748 | 748 | if (!$context['flags']['runpart']) { |