Toon Verwerft
Toon Verwerft
Small update from our side: I've updated the POC to work with a simple version of the model behaviour See https://github.com/veewee/ux/pull/1/files It can be used this way: ```php protected function...
I went with this approach because we have nested forms. That way you could do `form[subform][child]`. This was the easiest solution, because `form[$fieldName]` results in `form[subform[child]]` in that case
We notices this PR became inactive. If you wish to continue, feel free to pick it up again. If not, we will be closing this PR soon. Thanks for your...
We notices this PR became inactive. If you wish to continue, feel free to pick it up again. If not, we will be closing this PR soon. Thanks for your...
I must agree that this behaviour has bitten me in production as well on regular arrays and if we can fix it, that would be nice. However I do agree...
That would mean you have to iterate internally to find the value for a key, which is not very performant and not what you'dd expect from a map.
I was thinking: we could always prefix the key of the internal array with a specific string and store the actual (key, value) as a tuple instead. That would fix...
Hi @zerkms, That sure is possible. Care to give it a PR? Related exception lines in code: * https://github.com/azjezz/psl/blob/6683d60ba4d3abf8b4a4a9d94c39d0d08caa0214/src/Psl/Type/Internal/ShapeType.php#L147 * https://github.com/azjezz/psl/blob/6683d60ba4d3abf8b4a4a9d94c39d0d08caa0214/src/Psl/Type/Internal/ShapeType.php#L199
Hello, It is not executed during `grumphp run` since it uses the git staged files to detect these keywords. it only runs during pre-commit.
It might be so, that you need to apply keyword escaping, since `(` is a reserved regex character. See examples here: https://github.com/phpro/grumphp/blob/v2.x/doc/tasks/git_blacklist.md