13 lines
234 B
PHP
13 lines
234 B
PHP
<?php
|
|
class CommentController
|
|
{
|
|
/**
|
|
* @route /comments
|
|
*/
|
|
public function listAction()
|
|
{
|
|
$this->context->activeSection = 'comments';
|
|
$this->context->subTitle = 'comments';
|
|
throw new SimpleException('Not implemented');
|
|
}
|
|
}
|