api-platform / docs

API Platform documentation
https://api-platform.com/docs/
164 stars 1.05k forks source link

fix: autowire item provider #1937

Closed mboultoureau closed 2 months ago

mboultoureau commented 3 months ago

Fix a typo in State Provider (missing the service: for autowire attribute).

Before :

#[Autowire('api_platform.doctrine.orm.state.item_provider')]

After :

#[Autowire(service: 'api_platform.doctrine.orm.state.item_provider')]
dunglas commented 2 months ago

Thanks!