core icon indicating copy to clipboard operation
core copied to clipboard

feat: allow Parameter attributes on properties

Open soyuka opened this issue 1 year ago • 0 comments

Example

use ApiPlatform\Metadata\QueryParameter;

class Foo {
   #[QueryParameter(key: 'q', property: 'hydra:freetextQuery', required: true)]
   public $q;
}

See also #6244.

soyuka avatar Mar 26 '24 15:03 soyuka