Valentin Udaltsov

Results 47 comments of Valentin Udaltsov

@iquito , the problem with the new annotation is that it's new. It takes time for beginners to figure out that recursive validation requires `@Valid` on a property. Now a...

Here's how the listener might look like ```php public function onKernelController(FilterControllerEvent $event): void { $request = $event->getRequest(); $redirects = $request->attributes->get('_redirect', []); foreach ($redirects as $redirect) { if (!$redirect instanceof Redirect)...

I am happy to make a PR on whatever you decide. Imho it will be good to do both things: to add preg_match and priorities.

Created a [bundle](https://github.com/ruvents/ruvents-doctrine-fixes-bundle) addressing this issue

I think, I found a cleaner solution. At least for PostgreSQL. And it looks like it follows @deeky666's advice in https://github.com/doctrine/dbal/pull/2490#issuecomment-272990941 since it uses `AbstractSchemaManager::getSchemaSearchPaths()` through [PostgreSqlSchemaManager::determineExistingSchemaSearchPaths()](https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php#L94-L102). ```php

https://github.com/nikic/PHP-Parser/issues/980 seems to be relevant to this issue.

It seems to me, using `$node->name->getStartLine()` is the most reliable option right now. It's not always correct, because we can have ```php #[Attr] final class A {} ``` But it's...

Hi, @autaut03, first of all thank you for the interest in the Typhoon project. I've made a simple benchmark via [TheDragonCode/benchmark](https://github.com/TheDragonCode/benchmark) using Typhoon `0.3.3` and Good PHP `v1.0.0-alpha.4`: ```php

Well, theres's another huge refactoring coming for 0.4.x. So, right no it does not make sense to work on this issue with current code. I will let you know, when...