Skip to content

Commit

Permalink
fix: switch name and hint in settings suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim Schole committed Apr 25, 2024
1 parent 2888a2a commit b426f85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ public function getGeneratorSuggestions(): array
$obj = new $classname();

$data[] = [
'name' => $obj->getName(),
'hint' => $handle
'name' => $handle,
'hint' => $obj->getName()
];
}

Expand All @@ -93,8 +93,8 @@ public function getTranslatorSuggestions(): array
$obj = new $classname();

$data[] = [
'name' => $obj->getName(),
'hint' => $handle
'name' => $handle,
'hint' => $obj->getName()
];
}

Expand Down

0 comments on commit b426f85

Please sign in to comment.