I have a header param which should be used for every route. But I don't want to add the annotation for this param in every Controller. I tried different things but it's not possible to add it to an interface or to a class which will be exteneded by every controller. Is there a possibility to make it global? This is the param I want to set:
/**
* @OA\Parameter(
* name="x-locale",
* in="header",
* description="Locale for siteaccess matching",
* )
*/