c345800716
Now I can look at this.
13 lines
228 B
PHP
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');
|
|
}
|
|
}
|