Skip to content

Commit

Permalink
Reference the driver class
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Feb 28, 2024
1 parent 1d85506 commit cd61d37
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/asset/orm-autoload/local.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Doctrine\DBAL\Driver\SQLite3\Driver;

return [
'api-tools-mvc-auth' => [
'authentication' => [
Expand All @@ -20,7 +22,7 @@
'doctrine' => [
'connection' => [
'orm_default' => [
'driverClass' => 'Doctrine\DBAL\Driver\SQLite3\Driver',
'driverClass' => Driver::class,
'params' => [
'memory' => 'true',
],
Expand Down

0 comments on commit cd61d37

Please sign in to comment.