Skip to content

Commit

Permalink
Merge pull request #4590 from LibreSign/backport/4588/stable30
Browse files Browse the repository at this point in the history
[stable30] fix: typo
  • Loading branch information
vitormattos authored Feb 1, 2025
2 parents cf25a74 + b95beef commit feb2c50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Handler/JSignPdfHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function sign(): string {
}

private function signUsingVisibleElements(): string {
$visibleElements = $this->getvisibleElements();
$visibleElements = $this->getVisibleElements();
if ($visibleElements) {
$jSignPdf = $this->getJSignPdf();
$param = $this->getJSignParam();
Expand Down
2 changes: 1 addition & 1 deletion lib/Handler/Pkcs12Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public function sign(): File {
->setCertificate($this->getCertificate())
->setInputFile($this->getInputFile())
->setPassword($this->getPassword())
->setVisibleElements($this->getvisibleElements())
->setVisibleElements($this->getVisibleElements())
->sign();
$this->getInputFile()->putContent($signedContent);
return $this->getInputFile();
Expand Down
2 changes: 1 addition & 1 deletion lib/Handler/SignEngineHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function setVisibleElements(array $visibleElements): self {
*
* @psalm-return array<VisibleElementAssoc>
*/
public function getvisibleElements(): array {
public function getVisibleElements(): array {
return $this->visibleElements;
}
}

0 comments on commit feb2c50

Please sign in to comment.