szurubooru/src/Controllers/UserController.php
2013-10-05 19:26:33 +02:00

20 lines
303 B
PHP

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