mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
11 lines
263 B
PHP
11 lines
263 B
PHP
<?php declare(strict_types=1);
|
|
namespace hello\Web\Presenters;
|
|
use Chandler\MVC\SimplePresenter;
|
|
|
|
final class HelloPresenter extends SimplePresenter
|
|
{
|
|
function renderIndex(string $name = "Celestine"): void
|
|
{
|
|
$this->template->name = $name;
|
|
}
|
|
}
|