javaDeveloperKid

Results 64 comments of javaDeveloperKid

Thank you. I didn't remember that bleedingEdge.neon has to be included. I believed that the guy who enabled bleedingEdge in this project made sure it's really enabled. Also phpstan/extension-installer dependency...

> Why would you do this instead of: Needless if statement. One liner `nullable() ?? void()` is cleaner IMO.

This is the same case as we discussed on Symfony discussions. Monolog as well as Symfony doesn't know your web app is a long running script. You have to jump...

Does your stateful runtime allow to handle more than 1 concurrent request per process? Or does it share memory between processes (or threads depending on runtime architecture)? If any of...

I have a deja vu there was similar problem with traceable decorator and DI in another component a few months ago. @mbabker WorkflowInterface or any other FQCN is just an...

I forgot that when decorating services the id of a decorated service becomes an alias to the id of a decorating service. The tags are moved from the former to...

You could set a login attempts limit for the IP address. It's not perfect but may be enough to discourage an attacker. If the ip is shared (e.g. VPNs) the...

@stof says: > I would strongly suggest you to use a city argument instead. I fully agree. This is the right way for your use case.

I can see AsCommand attribute has `$aliases` parameter so I think OP should just use it instead of `setAliases()`

> @javaDeveloperKid the problem is _dynamic_ aliases. Right. I missed it.