Andrey Lebedev
Andrey Lebedev
There is an entity with property `$language`: ``` private Language $language = Language::ES; ``` On post request data with language from enum list (e.g. `es`) all is ok. But if...
I need multi-language API documentation. For now possible to generate single language only (which use in resource files). How better to implement it? Build instance of `ApiPlatform\OpenApi\OpenApi` with already translated...
How to declare subresource by YAML configuration? ``` uriVariables: [ 'companyId' => new Link(fromClass: Company::class, toProperty: 'company'), 'id' => new Link(fromClass: Employee::class), ], ``` YAML examples completely missed [here](https://api-platform.com/docs/core/subresources/) P.S....
I have found that in SDK missed parameter `enable_granular_consent`. I've added this parameters to Client's configuration. Please review.
I have set up PHPUnit 11 and started test: ``` PHP Fatal error: Non-readonly class SebastianBergmann\CodeUnit\ClassUnit cannot extend readonly class SebastianBergmann\CodeUnit\CodeUnit in /Users/alm/code/api_client/vendor/sebastian/code-unit/src/ClassUnit.php on line 15 ``` With PHPUnit 10.5.13...
### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | 2.17.1 #### Summary I am experiencing an issue with Doctrine ORM's query...
I need a multi-languages API documentation (generate many OpenAPI specifications where some description texts will be on english, german, and other languages). So, api:swagger:export should support parameter 'language' (e.g. --language=en)...
There are two commands: main and sub-command. In the main command there is PersistentFlag `name`. As i understand there are three options: - define flag `name` in the sub-command. But...