Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
anilkumarthakur60 committed Apr 8, 2024
1 parent b1e020c commit 255e712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ protected function defineRoutes($router): void
$this->userRoutes($router);
}

private function postRoutes(Router $router):void
private function postRoutes(Router $router): void
{
$router->get('posts', [PostController::class, 'index'])
->name('posts.index');
Expand Down Expand Up @@ -175,7 +175,7 @@ private function tagRoutes(Router $router): void
->name('tags.destroy');
}

private function userRoutes(Router $router):void
private function userRoutes(Router $router): void
{
$router->get('users', [UserController::class, 'index'])
->name('users.index');
Expand Down

0 comments on commit 255e712

Please sign in to comment.