-
Notifications
You must be signed in to change notification settings - Fork 183
Open
Description
Hello, I'm downgrading league/plates from v4.0.0-alpha to v3.4.0, because this version supports PHP 8.
When making this change I'm having a problem with this create:
IMG: https://i.imgur.com/fnsrTGz.png
How to fix it?
Code v4.0.0-alpha:
<?php
namespace App\Controllers;
use League\Plates\Engine;
class Panel
{
private $view;
public function __construct()
{
$this->view = Engine::create(__DIR__ . "/../Views/", "php");
}
public function login(): void
{
echo $this->view->render("login", [
"title" => "Login"
]);
}
public function error(array $data): void
{
echo "<h1>Error {$data["errcode"]}</h1>";
}
}
Metadata
Metadata
Assignees
Labels
No labels