Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function __construct(string $code, string $scopes, string $clientIdentifier, string $resourceOwnerIdentifier, |
||
43 | int $expiresAt, ?array $requestedScopes = null, ?string $redirectUri = null) |
||
44 | { |
||
45 | $this->code = $code; |
||
46 | $this->scopes = $scopes; |
||
|
|||
47 | $this->clientIdentifier = $clientIdentifier; |
||
48 | $this->resourceOwnerIdentifier = $resourceOwnerIdentifier; |
||
49 | $this->expiresAt = $expiresAt; |
||
50 | $this->requestedScopes = $requestedScopes; |
||
51 | $this->redirectUri = $redirectUri; |
||
52 | } |
||
106 | } |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..