slovocast/app/src/Handler/Channel/Page/CreateChannelPage.php

16 lines
317 B
PHP

<?php
namespace Slovocast\Handler\Channel\Page;
use Odan\Session\SessionInterface;
use Psr\Http\Message\ResponseInterface as Response;
use Slovocast\Handler\Handler;
class CreateChannelPage extends Handler
{
public function handle(): Response
{
return $this->render('channel/create.twig');
}
}