Paulo Dias
Paulo Dias
Any solution to this problem?
I have solved this using fetch EAGER in my entity relation: #[ORM\ManyToOne(fetch: 'EAGER', targetEntity: Gender::class, inversedBy: 'staffs')] #[ORM\JoinColumn(name: 'gender', referencedColumnName: 'id')] private $gender;
Now the class PhpParser\Node\Stmt\UseUse in nikic/php-parser v4.0.1, getting the property alias ( `$node->alias` ) will return always null. If we use the method getAlias ( `$node->getAlias()` ) this will return...
Another problem... this version (dev-master) is not respecting the translation_domain of forms...
FormExtrator must be changed to respect translation domains. Line 105: ``` if (!is_string($node->name)) { return; } ``` must be changed to: ``` if (!$node->name instanceof Node\Identifier) { return; } ```...