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.

22 lines
349 B
PHP

<?php
/**
* Created by PhpStorm.
* User: eater
* Date: 4/2/16
* Time: 11:17 PM
*/
namespace Eater\Glim\Handler\Panel\Certificates\_New;
use Eater\Glim\Handler\Panel;
class Show extends Panel
{
protected $shouldHaveUser = true;
public function handle()
{
return $this->render("panel/certificates/new.html.twig");
}
}