Is it possible to consolidate these two annotations so that I write it in single place?
use Swagger\Annotations as SWG;
use FOS\RestBundle\Controller\Annotations\RequestParam;
/**
* @SWG\Parameter(
* name="user_id",
* in="query",
* type="string",
* description="User Id"
* )
* @RequestParam(name="user_id", requirements="\d+", description="User Id")
*/