Kamil
Kamil
**API Platform version(s) affected**: 2.6.8 **Description** CompositeIdentifierParser does not handle php 8.1 enums. Enum object does not support toString magic method so it is impossible to make a workaround. **How...
**Description** Is it possible to implement support for these types? https://swagger.io/docs/specification/data-models/oneof-anyof-allof-not/?sbsearch=one%20of **Example** it could be working like that: ``` #[ApiProperty( attributes: [ 'openapi_context' => [ 'anyOf' => [ Foo::class, Bar::class,...
**API Platform version(s) affected**: 2.6.8 **Description** Entity fields typed with PHP 8.1 enums are incorrectly displayed on swagger. Default display: ```public FooEnum $bar;``` `"bar": { "@context": "string", "@id": "string", "@type":...
I'm using nextjs 13 with new app router and next-auth. My authorize method in CredentialsProvider looks like this: ``` async authorize(credentials) { if (!credentials) { return null; } try {...
**API Platform version(s) affected**: 3.1.12 **Description** Here is the definition of my operation: ``` new GetCollection( paginationViaCursor: [ ['field' => 'createdAt', 'direction' => 'DESC'] ], paginationItemsPerPage: 5, paginationPartial: true ),...