php-cs-fixer 有没有办法定义 Symfony 注释/PHPDoc 的顺序?
这是控制器方法和实体属性的两个示例:
/**
* @Security()
*
* @ParamConverter()
*
* @Rest\Post()
* @Rest\View()
*
* @param Request $request
* @param xxxInterface $item
*
* @return \FOS\RestBundle\View\View
*/
public function myAction(Request $request, xxxInterface $item)
和
/**
* @var itemInterface
* @ORM\ManyToOne()
* @ORM\JoinColumn()
* @JMS\Groups()
* @JMS\AccessType()
* @MyCustomAssert\Assert1
*/
protected $item;
对于方法,我想将顺序设置为@Security、@ParamConverter、@Rest,然后是 PHPDoc,对于属性,我总是希望最后是 @MyCustomAssert。
这对 php-cs-fixer 有可能吗?