Martin Rademacher

Results 172 comments of Martin Rademacher

https://spec.openapis.org/oas/v3.1.0#encoding-object

You can nest attributes but then you have to use new 🤷

Depends on how you are using swagger-php. Programmatically you always have the option to remove a processor from the pipeline. ```php $generator = new Generator(); // .... $generator->removeProcessor($processor); ``` Only...

The `scan()` method is static, so it doesn't really know about the changed processors in `$generator`. It should really be deprecated; in this case you really want to call `$generator->generate()`....

Not sure if it's a bug, but it could be better, agreed. I'll make sure to add their to the ongoing type detection revamp.

> ```public array SchemaLineChartsResource $market;``` That doesn't look like a valid PHP typehint to me, though?

Could be done, but the type system overhaul is going very slow (sorry). The only way to add those typehints would be phpdoc, I suppose: ```php /** @var array $market...

Yep, that could be better. Also the `"nullable": false` is kinda redundant I suppose...