Files
ops-Gazelle/sections/chat/join.php
2025-05-23 14:41:16 +02:00

12 lines
206 B
PHP

<?php
/** @phpstan-var \Gazelle\User $Viewer */
/** @phpstan-var \Twig\Environment $Twig */
declare(strict_types=1);
namespace Gazelle;
echo $Twig->render('chat/index.twig', [
'user' => $Viewer,
]);