Skip to content

Commit

Permalink
Better sorting for human eyes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjosefus authored and dg committed Jan 31, 2021
1 parent 95494da commit d09b7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/DITracy/ContainerPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function getPanel(): string
}
}
$types = $this->getContainerProperty('types') + $types;
ksort($types);
ksort($types, SORT_NATURAL);
foreach ($this->getContainerProperty('tags') as $tag => $tmp) {
foreach ($tmp as $service => $val) {
$tags[$service][$tag] = $val;
Expand Down

0 comments on commit d09b7b3

Please sign in to comment.