Skip to content

Commit

Permalink
Merge pull request #14 from mon-petit-placement/fix/id-documents
Browse files Browse the repository at this point in the history
fix/id-documents add s to variable name in getter and setter
  • Loading branch information
Gwemox authored Nov 12, 2021
2 parents a56de8e + 59751d9 commit 6703606
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Model/Signer.php
Original file line number Diff line number Diff line change
Expand Up @@ -498,19 +498,19 @@ public function getCertificateType(): ?string
*
* @return self
*/
public function setIdDocuments(?RegistrationRequest $idDocument): self
public function setIdDocuments(?RegistrationRequest $idDocuments): self
{
$this->idDocument = $idDocument;
$this->idDocuments = $idDocuments;

return $this;
}

/**
* @return array|null
*/
public function getIdDocument(): ?RegistrationRequest
public function getIdDocuments(): ?RegistrationRequest
{
return $this->idDocument;
return $this->idDocuments;
}

/**
Expand Down

0 comments on commit 6703606

Please sign in to comment.