Let there be placeholders

This commit is contained in:
Marcin Kurczewski
2013-10-05 19:24:08 +02:00
parent 3ba0d60d78
commit c905f1d7dd
11 changed files with 137 additions and 55 deletions

View File

@ -0,0 +1,20 @@
<?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');
}
}