szurubooru/src/Controllers/UserController.php

21 lines
303 B
PHP
Raw Normal View History

2013-10-05 19:24:08 +02:00
<?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');
}
}