Skip to content

Commit

Permalink
Cs
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek committed Oct 28, 2020
1 parent ba568cd commit 6478768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function getComponents(Plugin $plugin, ?string $view): array
}
}

usort($return, fn(PluginComponent $a, PluginComponent $b): int => $a->getPosition() < $b->getPosition() ? 1 : -1);
usort($return, fn (PluginComponent $a, PluginComponent $b): int => $a->getPosition() < $b->getPosition() ? 1 : -1);

return $return;
}
Expand Down

0 comments on commit 6478768

Please sign in to comment.