Skip to content

Commit

Permalink
Clean up for PHPCS
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstauffer committed Jun 28, 2024
1 parent 5a637ff commit a39e947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/MariaDb.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected function buildParameters(): array
{
$parameters = parent::buildParameters();

$parameters["allow_empty_password"] = $parameters["root_password"] === "" ? "yes" : "no";
$parameters['allow_empty_password'] = $parameters['root_password'] === '' ? 'yes' : 'no';

return $parameters;
}
Expand Down

0 comments on commit a39e947

Please sign in to comment.