szurubooru/src/Controllers/CommentController.php

13 lines
209 B
PHP
Raw Normal View History

2013-10-05 19:24:08 +02:00
<?php
class CommentController extends AbstractController
{
/**
* @route /comments
*/
public function listAction()
{
2013-10-05 21:22:28 +02:00
$this->context->subTitle = 'comments';
2013-10-05 19:24:08 +02:00
throw new Exception('Not implemented');
}
}