changed render from void to never

This commit is contained in:
tracer 2022-10-26 13:15:41 +02:00
parent 60860a0bce
commit 2f99531780
1 changed files with 1 additions and 4 deletions

View File

@ -13,8 +13,6 @@ namespace App\Service;
* using PHP as a templating engine.
*/
use JetBrains\PhpStorm\NoReturn;
class Template
{
/*
@ -28,8 +26,7 @@ class Template
/*
* Add variables to template and throw it out
*/
#[NoReturn]
public function render(string $templateName, array $vars = []): void
public function render(string $templateName, array $vars = []): never
{
// assign template vars
foreach ($vars as $name => $value) {