openvk/Web/Presenters/HelloPresenter.php

15 lines
273 B
PHP

<?php
declare(strict_types=1);
namespace hello\Web\Presenters;
use Chandler\MVC\SimplePresenter;
final class HelloPresenter extends SimplePresenter
{
public function renderIndex(string $name = "Celestine"): void
{
$this->template->name = $name;
}
}