Skip to content

Commit

Permalink
fix: cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
ga-devfront committed Feb 7, 2025
1 parent fa3757c commit 9206dbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/Parameters/RestoreConfigurationValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function validate(array $array = []): array
if ($backupNameErrors) {
$errors[] = [
'message' => $backupNameErrors,
'target' => RestoreConfiguration::BACKUP_NAME
'target' => RestoreConfiguration::BACKUP_NAME,
];

return $errors;
Expand All @@ -46,8 +46,8 @@ public function validate(array $array = []): array
if ($backupNameExistErrors) {
$errors[] = [
'message' => $backupNameExistErrors,
'target' => RestoreConfiguration::BACKUP_NAME
];;
'target' => RestoreConfiguration::BACKUP_NAME,
];
}

return $errors;
Expand Down

0 comments on commit 9206dbb

Please sign in to comment.