core
core copied to clipboard
feat: allow Parameter attributes on properties
Example
use ApiPlatform\Metadata\QueryParameter;
class Foo {
#[QueryParameter(key: 'q', property: 'hydra:freetextQuery', required: true)]
public $q;
}
See also #6244.