| @@ -23,7 +23,6 @@ | ||
| 23 | 23 | |
| 24 | 24 | // also remove empty lines | 
| 25 | 25 | return $removeEmptyLines ? | 
| 26 | -            preg_replace("/(^[\r\n]*|[\r\n]+)[\\s\t]*[\r\n]+/", PHP_EOL, $result) : | |
| 27 | - $result; | |
| 26 | +            preg_replace("/(^[\r\n]*|[\r\n]+)[\\s\t]*[\r\n]+/", PHP_EOL, $result) : $result; | |
| 28 | 27 | } | 
| 29 | 28 | } | 
| @@ -11,7 +11,7 @@ | ||
| 11 | 11 | */ | 
| 12 | 12 | public function __construct( | 
| 13 | 13 | public readonly string $layout, | 
| 14 | - public readonly ?array $context = null | |
| 14 | + public readonly ? array $context = null | |
| 15 | 15 |      ) { | 
| 16 | 16 | } | 
| 17 | 17 | } | 
| @@ -20,7 +20,6 @@ | ||
| 20 | 20 | public function get(string $name): callable | 
| 21 | 21 |      { | 
| 22 | 22 | return array_key_exists($name, $this->methods) ? | 
| 23 | - $this->methods[$name] : | |
| 24 | -            throw new UnexpectedValueException("Custom method '{$name}' does not exist"); | |
| 23 | +            $this->methods[$name] : throw new UnexpectedValueException("Custom method '{$name}' does not exist"); | |
| 25 | 24 | } | 
| 26 | 25 | } | 
| @@ -18,7 +18,7 @@ | ||
| 18 | 18 |      { | 
| 19 | 19 | return htmlspecialchars( | 
| 20 | 20 | (string)$this->value, | 
| 21 | - ENT_QUOTES | ENT_SUBSTITUTE, | |
| 21 | + ENT_QUOTES|ENT_SUBSTITUTE, | |
| 22 | 22 | 'UTF-8', | 
| 23 | 23 | ); | 
| 24 | 24 | } | 
| @@ -111,7 +111,7 @@ discard block | ||
| 111 | 111 |      { | 
| 112 | 112 | $templateContext = $this->templateContext($context, $whitelist, $autoescape); | 
| 113 | 113 | |
| 114 | -        $load = function (string $templatePath, array $context = []): void { | |
| 114 | +        $load = function(string $templatePath, array $context = []): void { | |
| 115 | 115 | // Hide $templatePath. Could be overwritten if $context['templatePath'] exists. | 
| 116 | 116 | $____template_path____ = $templatePath; | 
| 117 | 117 | |
| @@ -131,8 +131,7 @@ discard block | ||
| 131 | 131 | $load( | 
| 132 | 132 | $this->path, | 
| 133 | 133 | $autoescape ? | 
| 134 | - $templateContext->context() : | |
| 135 | - $context | |
| 134 | + $templateContext->context() : $context | |
| 136 | 135 | ); | 
| 137 | 136 | |
| 138 | 137 | $content = ob_get_clean(); | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | /** @psalm-api */ | 
| 10 | 10 | class TemplateContext | 
| 11 | 11 |  { | 
| 12 | - private const ESCAPE_FLAGS = ENT_QUOTES | ENT_SUBSTITUTE; | |
| 12 | + private const ESCAPE_FLAGS = ENT_QUOTES|ENT_SUBSTITUTE; | |
| 13 | 13 | private const ESCAPE_ENCODING = 'UTF-8'; | 
| 14 | 14 | |
| 15 | 15 | /** |