Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
Need to be camelCase

Signed-off-by: Vitor Mattos <vitor@php.rio>
  • Loading branch information
vitormattos authored and backportbot-libresign[bot] committed Feb 1, 2025
1 parent cf25a74 commit b95beef
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 b95beef

Please sign in to comment.