File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public function testActingAsClientWhenTheRouteIsProtectedByCheckClientCredential
3838
3939 $ router ->get ('/foo ' , function () {
4040 return 'bar ' ;
41- })->middleware (CheckClientCredentialsForAnyScope::class . ':testFoo ' );
41+ })->middleware (CheckClientCredentialsForAnyScope::class. ':testFoo ' );
4242
4343 Passport::actingAsClient (new Client (), ['testFoo ' ]);
4444
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public function testActingAsWhenTheRouteIsProtectedByCheckScopesMiddleware()
3838
3939 $ router ->get ('/foo ' , function () {
4040 return 'bar ' ;
41- })->middleware (CheckScopes::class . ':admin,footest ' );
41+ })->middleware (CheckScopes::class. ':admin,footest ' );
4242
4343 Passport::actingAs (new PassportUser (), ['admin ' , 'footest ' ]);
4444
@@ -56,7 +56,7 @@ public function testActingAsWhenTheRouteIsProtectedByCheckForAnyScopeMiddleware(
5656
5757 $ router ->get ('/foo ' , function () {
5858 return 'bar ' ;
59- })->middleware (CheckForAnyScope::class . ':admin,footest ' );
59+ })->middleware (CheckForAnyScope::class. ':admin,footest ' );
6060
6161 Passport::actingAs (new PassportUser (), ['footest ' ]);
6262
You can’t perform that action at this time.
0 commit comments