mirror of
https://github.com/openvk/openvk
synced 2025-04-21 15:43:03 +03:00
15 lines
273 B
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;
|
|
}
|
|
}
|