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 2ed799c commit 9b4ce82Copy full SHA for 9b4ce82
_iam/src/AdapterForWeb/Administration/OauthClient/Form/Dto/OauthClientDto.php
@@ -17,9 +17,9 @@
17
18
class OauthClientDto
19
{
20
- public string $name;
+ public ?string $name;
21
22
- public string $identifier;
+ public ?string $identifier;
23
24
public string $secret;
25
psalm-baseline.xml
@@ -4,6 +4,10 @@
4
<MixedArgument>
5
<code><![CDATA[$form->getData()]]></code>
6
</MixedArgument>
7
+ <PossiblyNullArgument>
8
+ <code><![CDATA[$dto->identifier]]></code>
9
+ <code><![CDATA[$dto->name]]></code>
10
+ </PossiblyNullArgument>
11
<PossiblyNullPropertyAssignmentValue>
12
<code><![CDATA[$client->getSecret()]]></code>
13
</PossiblyNullPropertyAssignmentValue>
0 commit comments