You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal error: Call to undefined method Doctrine\ORM\Mapping\Driver\YamlDriver::setFileExtension() in *\vendor\taluu\doctrine-orm-provider\lib\Nutwerk\Provider\DoctrineORMServiceProvider.php on line 104
I'm guessing the solution to be that on the line:
$driver = new YamlDriver((array)$entity['path']);
$driver->setFileExtension('.yml');
It should be instead:
$driver = new YamlDriver((array)$entity['path'],".yml");
The text was updated successfully, but these errors were encountered:
This is the full error I get:
I'm guessing the solution to be that on the line:
It should be instead:
The text was updated successfully, but these errors were encountered: