Skip to content

Commit

Permalink
Fix indent in TestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoordsij committed May 3, 2023
1 parent f60a760 commit 594c409
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,15 +243,15 @@ public function getLastRouteMiddlewareFromRouter($router)
return last($router->getRoutes()->get())->middleware();
}

public function getRouter()
{
return app('router');
}

public function getRouteResponse()
{
return function () {
return (new Response())->setContent('<html></html>');
};
}
public function getRouter()
{
return app('router');
}

public function getRouteResponse()
{
return function () {
return (new Response())->setContent('<html></html>');
};
}
}

0 comments on commit 594c409

Please sign in to comment.