szurubooru/src/Controllers/CommentController.php

14 lines
234 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-12 22:37:18 +02:00
throw new SimpleException('Not implemented');
2013-10-05 19:24:08 +02:00
}
}