for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stu\Module\Admin\View\Overview;
use Stu\Module\Control\GameControllerInterface;
use Stu\Module\Control\ViewControllerInterface;
final class Overview implements ViewControllerInterface
{
public function handle(GameControllerInterface $game): void
$game->appendNavigationPart('/admin/', _('Übersicht'));
$game->setTemplateFile('html/admin/overview.xhtml');
$game->setPageTitle(_('Admin'));
}