Skip to content

Commit

Permalink
Apply fixes from StyleCI (#36577)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored and driesvints committed Mar 12, 2021
1 parent 05611b1 commit e8ebbc6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Routing/RouteRegistrarTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ public function testCanRegisterResourceWithMissingOption()
{
$this->router->middleware('resource-middleware')
->resource('users', RouteRegistrarControllerStub::class)
->missing(function () { return 'missing'; });
->missing(function () {
return 'missing';
});

$this->assertIsCallable($this->router->getRoutes()->getByName('users.show')->getMissing());
$this->assertIsCallable($this->router->getRoutes()->getByName('users.edit')->getMissing());
Expand Down

0 comments on commit e8ebbc6

Please sign in to comment.