Skip to content

Commit 392053a

Browse files
authored
Merge pull request #60 from tpokorra/TP-202301-CredentialDataString
Credential Representation: CredentialData must be string instead of int
2 parents 58e31fe + 3c7d9d4 commit 392053a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Representation/Credential.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @method int|null getCreatedDate()
9-
* @method int|null getCredentialData()
9+
* @method string|null getCredentialData()
1010
* @method string|null getId()
1111
* @method int|null getPriority()
1212
* @method string|null getSecretData()
@@ -15,7 +15,7 @@
1515
* @method string|null getUserLabel()
1616
* @method string|null getValue()
1717
* @method self withCreatedDate(?int $createdDate)
18-
* @method self withCredentialData(?int $credentialData)
18+
* @method self withCredentialData(?string $credentialData)
1919
* @method self withId(?string $id)
2020
* @method self withPriority(?int $priority)
2121
* @method self withSecretData(?string $secretData)
@@ -30,7 +30,7 @@ class Credential extends Representation
3030
{
3131
public function __construct(
3232
protected ?int $createdDate = null,
33-
protected ?int $credentialData = null,
33+
protected ?string $credentialData = null,
3434
protected ?string $id = null,
3535
protected ?int $priority = null,
3636
protected ?string $secretData = null,

0 commit comments

Comments
 (0)