22 lines
362 B
PHP
22 lines
362 B
PHP
<?php
|
|
class UserController
|
|
{
|
|
/**
|
|
* @route /users
|
|
*/
|
|
public function listAction()
|
|
{
|
|
$this->context->subTitle = 'users';
|
|
throw new SimpleException('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* @route /user/{name}
|
|
* @validate name [^\/]+
|
|
*/
|
|
public function viewAction($name)
|
|
{
|
|
$this->context->subTitle = $name;
|
|
throw new SimpleException('Not implemented');
|
|
}
|
|
}
|