szurubooru/src/Controllers/CommentController.php
Marcin Kurczewski c345800716 Placeholder stylesheets
Now I can look at this.
2013-10-05 22:52:55 +02:00

13 lines
228 B
PHP

<?php
class CommentController
{
/**
* @route /comments
*/
public function listAction()
{
$this->context->activeSection = 'comments';
$this->context->subTitle = 'comments';
throw new Exception('Not implemented');
}
}