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
38
38
39
39
$ router ->get ('/foo ' , function () {
40
40
return 'bar ' ;
41
- })->middleware (CheckClientCredentialsForAnyScope::class . ':testFoo ' );
41
+ })->middleware (CheckClientCredentialsForAnyScope::class. ':testFoo ' );
42
42
43
43
Passport::actingAsClient (new Client (), ['testFoo ' ]);
44
44
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public function testActingAsWhenTheRouteIsProtectedByCheckScopesMiddleware()
38
38
39
39
$ router ->get ('/foo ' , function () {
40
40
return 'bar ' ;
41
- })->middleware (CheckScopes::class . ':admin,footest ' );
41
+ })->middleware (CheckScopes::class. ':admin,footest ' );
42
42
43
43
Passport::actingAs (new PassportUser (), ['admin ' , 'footest ' ]);
44
44
@@ -56,7 +56,7 @@ public function testActingAsWhenTheRouteIsProtectedByCheckForAnyScopeMiddleware(
56
56
57
57
$ router ->get ('/foo ' , function () {
58
58
return 'bar ' ;
59
- })->middleware (CheckForAnyScope::class . ':admin,footest ' );
59
+ })->middleware (CheckForAnyScope::class. ':admin,footest ' );
60
60
61
61
Passport::actingAs (new PassportUser (), ['footest ' ]);
62
62
You can’t perform that action at this time.
0 commit comments