szurubooru/src/Controllers/CommentController.php

14 lines
228 B
PHP
Raw Normal View History

2013-10-05 19:24:08 +02:00
<?php
2013-10-05 21:24:20 +02:00
class CommentController
2013-10-05 19:24:08 +02:00
{
/**
* @route /comments
*/
public function listAction()
{
$this->context->activeSection = 'comments';
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');
}
}