flack

Results 60 comments of flack

@tonytomov I have no intention of starting a fight with you. I just received @kkrasnik's comment as an email and replied to it. I'm not actively watching your repo anymore,...

No problem, there's no hurry. Fortunately, I don't stumble across this kind of code often, so it's no biggie anyways :) I've looked into Emacs syntax highlighting capabilities myself a...

Hm, now that you mention it, `__dir__` is indeed valid according to PHP documentation, in fact, all "magic constants" (i.e. the ones starting with two underscores) are, but all the...

Sorry for also leaving a style nit, but as someone also mentioned on the mailing list, `pkg` is a much more common abbreviation than `pckg` (it's even mentioned on Wikipedia:...

P.S.: Wrapping `getReference()` and `var_dump` in a try/catch block doesn't help. Just in case someone wants to suggest that :-)

Yeah, maybe. I originally did not find a way to reproduce it without the Doctrine proxy involved, but I just found that this also triggers it: ```php class test {...

after some more research, I'm pretty sure now that this is really only an xdebug issue, closing this one.

Short update: I've since discovered https://github.com/php/php-src/issues/7922 which states that the Fatal Error mentioned above is actually a current core PHP behavior/bug. The `__debugInfo()` method generated in doctrine proxies looks like...

changed the title to reflect the latest findings

My two cents: - `_debugInfo` is a default PHP feature and magic method just like `__get`, `__set`, `__isset`,`__sleep` and `__wakeup`, all of which have special handling in `ProxyGenerator`, because they...