Alexander Grimalovsky
Alexander Grimalovsky
I end up with this solution for Symfony 6 application: ```php
> @FlyingDR According to your edit, this is no longer true I think 🙂 @greg0ire Indeed :)
Another case of what seems to be the same issue: ```php function test(?object $obj = null): string { return $obj ? $obj::class : '-'; } ``` Reproducible in EA Ultimate...
@mpdude I've faced the same issue trying to use `\Doctrine\ORM\EntityRepository::findBy()` with the `$criteria` that references many-to-many association. Relevant parts of entities: Table.php ```php #[ORM\Entity] #[ORM\Table('tables')] class Table { #[ORM\Id] #[ORM\Column]...