szurubooru/src/Controllers/UserController.php
2013-10-05 21:24:20 +02:00

22 lines
350 B
PHP

<?php
class UserController
{
/**
* @route /users
*/
public function listAction()
{
$this->context->subTitle = 'users';
throw new Exception('Not implemented');
}
/**
* @route /user/{name}
* @validate name [^\/]+
*/
public function showAction($name)
{
$this->context->subTitle = $name;
throw new Exception('Not implemented');
}
}