我想在Symfony2 php-framework中声明方法之外的其他参数,它们应该是注释形式(带@符号),由注释包装。这样的事情:
class SomeController {
constructor() {
//
}
/*
* @Secure(roles="admin")
* @Cache(smaxage="15")
*/
indexAction() {
//
}
};
我该怎么做?