@@ -195,7 +195,7 @@ discard block  | 
                                                    ||
| 195 | 195 | * @param array<string,array|string|integer> $context current compile context  | 
                                                        
| 196 | 196 | * @param array<boolean|integer|string|array> $vars parsed arguments list  | 
                                                        
| 197 | 197 | *  | 
                                                        
| 198 | - * @return array<string> code representing passed expression  | 
                                                        |
| 198 | + * @return string[] code representing passed expression  | 
                                                        |
| 199 | 199 | */  | 
                                                        
| 200 | 200 |      public static function compileSubExpression(&$context, $vars) { | 
                                                        
| 201 | 201 | $ret = static::customHelper($context, $vars, true, true);  | 
                                                        
@@ -501,7 +501,7 @@ discard block  | 
                                                    ||
| 501 | 501 | * @param array<boolean|integer|string|array> $vars parsed arguments list  | 
                                                        
| 502 | 502 | * @param boolean $isEach the section is #each  | 
                                                        
| 503 | 503 | *  | 
                                                        
| 504 | - * @return string|null Return compiled code segment for the token  | 
                                                        |
| 504 | + * @return string Return compiled code segment for the token  | 
                                                        |
| 505 | 505 | */  | 
                                                        
| 506 | 506 |      protected static function section(&$context, $vars, $isEach = false) { | 
                                                        
| 507 | 507 | $bs = 'null';  | 
                                                        
@@ -531,7 +531,7 @@ discard block  | 
                                                    ||
| 531 | 531 | * @param array<string,array|string|integer> $context current compile context  | 
                                                        
| 532 | 532 | * @param array<boolean|integer|string|array> $vars parsed arguments list  | 
                                                        
| 533 | 533 | *  | 
                                                        
| 534 | - * @return string|null Return compiled code segment for the token  | 
                                                        |
| 534 | + * @return string Return compiled code segment for the token  | 
                                                        |
| 535 | 535 | */  | 
                                                        
| 536 | 536 |      protected static function with(&$context, $vars) { | 
                                                        
| 537 | 537 | $v = isset($vars[1]) ? static::getVariableNameOrSubExpression($context, $vars[1]) : array(null, array());  | 
                                                        
@@ -740,7 +740,7 @@  | 
                                                    ||
| 740 | 740 | * @param array<string,array|string|integer> $context Current context of compiler progress.  | 
                                                        
| 741 | 741 | * @param string $name helper name  | 
                                                        
| 742 | 742 | *  | 
                                                        
| 743 | - * @return string|null $content helper function name or callable  | 
                                                        |
| 743 | + * @return boolean|null $content helper function name or callable  | 
                                                        |
| 744 | 744 | */  | 
                                                        
| 745 | 745 |      public static function resolveHelper(&$context, &$name) { | 
                                                        
| 746 | 746 |          if (isset($context['helpers'][$name])) { |