This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
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');
}
}