Skip to content

Commit

Permalink
Remove test method type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jul 10, 2024
1 parent 5e27628 commit 7733c69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class NavigationFacadeTest extends UnitTestCase
{
public function testItem(): void
public function testItem()
{
$item = Navigation::item('home', 'Home', 100);

Expand All @@ -23,7 +23,7 @@ public function testItem(): void
], $item);
}

public function testItemWithOnlyDestination(): void
public function testItemWithOnlyDestination()
{
$item = Navigation::item('home');

Expand Down

0 comments on commit 7733c69

Please sign in to comment.