You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
279 B
PHP

<?php
/**
* Created by PhpStorm.
* User: eater
* Date: 4/2/16
* Time: 9:27 PM
*/
namespace Eater\Glim\Handler;
class Panel extends Session
{
protected $shouldHaveUser = true;
public function handle()
{
return $this->render('panel.html.twig');
}
}