File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 46
46
"php" : " >=8.1" ,
47
47
"nyholm/psr7" : " ^1.8.2" ,
48
48
"mockery/mockery" : " ^1.6.12" ,
49
- "phpunit/phpunit" : " ^9.6 || ^ 10.5.44 " ,
49
+ "phpunit/phpunit" : " ^9.6 || 10.5.45 " ,
50
50
"spiral/auth" : " ^3.15" ,
51
51
"spiral/auth-http" : " ^3.15" ,
52
52
"spiral/boot" : " ^3.15" ,
Original file line number Diff line number Diff line change 8
8
errorBaseline =" psalm-baseline.xml"
9
9
>
10
10
<issueHandlers >
11
+ <MissingOverrideAttribute errorLevel =" suppress" />
12
+ <ClassMustBeFinal errorLevel =" suppress" />
11
13
<MissingClassConstType errorLevel =" suppress" />
12
14
<RedundantConditionGivenDocblockType errorLevel =" suppress" />
13
15
<RedundantCastGivenDocblockType errorLevel =" suppress" />
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ public function headers(ServerRequestInterface $request): array
25
25
#[Route('/get/scopes ' , 'get.scopes ' )]
26
26
public function scopes (ServerRequestInterface $ request ): array
27
27
{
28
- return Introspector::scopeNames ();
28
+ return \array_values ( \array_filter ( Introspector::scopeNames ()) );
29
29
}
30
30
}
You can’t perform that action at this time.
0 commit comments