12 lines
168 B
PHP
12 lines
168 B
PHP
|
<?php
|
||
|
class CommentController extends AbstractController
|
||
|
{
|
||
|
/**
|
||
|
* @route /comments
|
||
|
*/
|
||
|
public function listAction()
|
||
|
{
|
||
|
throw new Exception('Not implemented');
|
||
|
}
|
||
|
}
|