We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd1dadc commit 76edad6Copy full SHA for 76edad6
dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php
@@ -275,7 +275,7 @@ private function isMariaDB(): bool
275
'mariadb-dump --version'
276
);
277
$pattern = "/((?:[0-9]+\.?)+)(.*?)(mariadb)/i";
278
- preg_match($pattern, $version === null ? $version : '', $matches);
+ preg_match($pattern, $version !== null ? $version : '', $matches);
279
$currentVersion = $matches[1] ?? '';
280
$isMariadb = isset($matches[3]);
281
if ($isMariadb
0 commit comments