Closed
Description
Is breaking straightforward migration when named arguments are used a bug or feature?
E.g. this code - without Safe - will work fine:
\json_decode($json, flags: \JSON_THROW_ON_ERROR);
migration to using Safe would require to changing flags
to options
though.