We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d9840 commit 6d1da01Copy full SHA for 6d1da01
tests/Routing/RouteRegistrarTest.php
@@ -338,7 +338,9 @@ public function testCanRegisterResourceWithMissingOption()
338
{
339
$this->router->middleware('resource-middleware')
340
->resource('users', RouteRegistrarControllerStub::class)
341
- ->missing(function () { return 'missing'; });
+ ->missing(function () {
342
+ return 'missing';
343
+ });
344
345
$this->assertIsCallable($this->router->getRoutes()->getByName('users.show')->getMissing());
346
$this->assertIsCallable($this->router->getRoutes()->getByName('users.edit')->getMissing());
0 commit comments