Pascal Münst
Pascal Münst
Wow that was blazing fast. Works like a charm (again). Thank you so much!
@namaless the problem with this solution would be that you can't define paramters inside a configuration file (if this is a requirement at all).
@tuupola should I change the order of arguments so we can already use it in a 3.x release without breaking anything?
We would need to make a web version out of the electron app and integrate that one into Franz. The code is open source and can be modified and distributed...
I found the root cause. Because I add `@Exclude()` on class level, the type discriminator property gets added to the class instance but then skipped during serialization because of the...
I could hack it like this: ```php Assert::oneOf( function () use ($value) { Assert::string($value) }, Assert::not( function () use ($value) { Assert::isInstanceOf($value, ClassA::class)); } ) ); ``` ```php class Assert...
I want to use it for other grammar files than just the `php5` and `php7` yaccs. And that way I can reuse this instead of copying everything to a new...
You're absolutely right if you say that there is specific code to the PHP parser **but** there are also a lot of general things handled in it which one would...
I stumbled across this issue here and want to add some questions/thoughts to it: What's the purpose of `preferredUsername` if it has not to be unique per instance? I can...
@nikic alright. Should I fix it in the php parser repo and adjust the parser generation behavior there to be ready for this lib? Or is there e specific reason...