Skip to content

Commit 6d1da01

Browse files
authored
Apply fixes from StyleCI (#36577)
1 parent e1d9840 commit 6d1da01

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Routing/RouteRegistrarTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,9 @@ public function testCanRegisterResourceWithMissingOption()
338338
{
339339
$this->router->middleware('resource-middleware')
340340
->resource('users', RouteRegistrarControllerStub::class)
341-
->missing(function () { return 'missing'; });
341+
->missing(function () {
342+
return 'missing';
343+
});
342344

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

0 commit comments

Comments
 (0)