20 lines
303 B
PHP
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');
|
|
}
|
|
}
|