We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f31b76 + b1bfc60 commit a5f72caCopy full SHA for a5f72ca
src/DbDumperFactory.php
@@ -55,7 +55,7 @@ protected static function forDriver($dbDriver): DbDumper
55
{
56
$driver = strtolower($dbDriver);
57
58
- if ($driver === 'mysql') {
+ if (in_array($driver, ['mariadb', 'mysql'])) {
59
return new MySql();
60
}
61
0 commit comments