mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Let there be placeholders
This commit is contained in:
20
src/Controllers/UserController.php
Normal file
20
src/Controllers/UserController.php
Normal 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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user