Skip to content

Commit

Permalink
Fix oracle driver name
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Apr 14, 2023
1 parent c99cca5 commit 8990700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ItemTreeTraversal/ItemTreeTraversalFactory.php
Expand Up @@ -42,7 +42,7 @@ public static function getItemTreeTraversal(
'mysql' => self::getMysqlItemTreeTraversal($database, $arguments),
'pgsql' => new PostgresCteItemTreeTraversal(...$arguments),
'sqlsrv' => new SqlserverCteItemTreeTraversal(...$arguments),
'oracle' => new OracleCteItemTreeTraversal(...$arguments),
'oci' => new OracleCteItemTreeTraversal(...$arguments),
// Ignored due to a complexity of testing and preventing splitting of database argument.
// @codeCoverageIgnoreStart
default => throw new RuntimeException("$driver database driver is not supported."),
Expand Down

0 comments on commit 8990700

Please sign in to comment.