Jérôme
Jérôme
Would it make sense to split this into 2 different features: one that deserialize input and one that validate controller arguments (with 2 separate attributes)? This would allow to use...
The first argument resolver take over, the validation would have to be implemented in another way (probably with an event listener).
@GaryPEGEOT I don't think the performance overhead would be that important, we read attributes for controller arguments on every request for the ArgumentResolver feature so doing it for a validation...
I'm :-1: here, having a fluent interface would be annoying when you need to mix function from this package with your own functions (or functions from other packages). I think...
> @jvasseur can you be more specific? > > > I'm -1 here, having a fluent interface would be annoying when you need to mix function from this package with...
This is wrong, `UploadedFileInterface[]` means an array of `UploadedFileInterface` and `getUploadedFiles` can return nested arrays (which can't be represented with PHPDoc because it would need a recursive type).
I see one valid use case for discovering issuer with link headers: if you put the link header on the whole domain this allow users to connect by filling only...
Since the dependency on `yarg@^16.1.0` means we require at least node 10, these methods should be available so I think this could be released in a minor version.
That's because MySQL actually does support mixing modifying the database structure inside migrations (if I recall correctly it automatically commits the transaction before modifying the table). The code in the...
It's not the context of migrations, but `ALTER` query that poses problems with MySQL transactions, so yes most of the time your transactions won't work in the context of migrations...