Zeljko Mitic
Zeljko Mitic
In PHPStorm, when you have code like ``$enum->equals()`` you don't have autocomplete of possible options. That _should_ be achievable with meta file: https://blog.jetbrains.com/phpstorm/2019/02/new-phpstorm-meta-php-features/ Now... I am not going to lie,...
https://psalm.dev/r/c061438453 The ``echo 'break'`` is here only for psalm to correctly trace ``$input``, cannot remember the rule for that, sorry.
When dealing with collections, using ``write_property_path`` can be problematic when dealing with non-direct relations. Simple example; please note I am using new arrow function for readibility, recent github changes for...
When form types are created from controller like this: ```php public function __invoke() { $form = $this->createForm(SearchType::class); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $code = $form->getData(); //
With service locator anti-pattern being deprecated long ago, we can now use ``ServiceLocator`` class for tagged services. If you check compiler passes, it is only used for that anyway. Use...
Check screenshot, there is no CSS loaded: 
This issue is a feature request of rewriting my existing solution into symfony/ux. It is about removing the need for any JS for dynamic fields, but it does require one...
I am super-excited for Stimulus+Turbo and already using both but being JS noob, it is very hard to figure how to configure integration with Symfony. Example: this is how my...
When I create invoice in browser, my item with code 1006 and GST tax of 10% is correctly created:  I.e. I pick 1006 and browser puts the tax. All...
Latest 8.3 supports arbitrary[ static variable initializers](https://wiki.php.net/rfc/arbitrary_static_variable_initializers) but psalm doesn't detect the type. Like in [this example](https://psalm.dev/r/ada95c35e3), even thought it is [valid](https://3v4l.org/eQAQL#v8.3.3) code. Isolating value calculation in another method didn't...