Skip to content

Commit 539462d

Browse files
committed
Fix a coding standard issue
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent 89d77b8 commit 539462d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tools/ContextGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@ public static function formatName($name)
292292

293293
/* Format name */
294294
$base = $parts[1];
295-
if ($base == 'MySql') {
295+
if ($base === 'MySql') {
296296
$base = 'MySQL';
297-
} elseif ($base == 'MariaDb') {
297+
} elseif ($base === 'MariaDb') {
298298
$base = 'MariaDB';
299299
}
300300

0 commit comments

Comments
 (0)