Есть ли способ с помощью 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?