Skip to content

Commit 4a36e29

Browse files
committed
Sort property constructors
1 parent f847691 commit 4a36e29

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/framework/src/Framework/Features/Navigation/NavigationItem.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ class NavigationItem implements Stringable
2323

2424
public function __construct(Route|string $destination, string $label, int $priority = NavigationMenu::DEFAULT)
2525
{
26-
$this->destination = $destination;
27-
2826
$this->label = $label;
2927
$this->priority = $priority;
28+
$this->destination = $destination;
3029
}
3130

3231
/**

0 commit comments

Comments
 (0)