Skip to content

Commit

Permalink
Reformat string
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Aug 14, 2024
1 parent 5114d43 commit fd36760
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.0.65
8.0.66
2 changes: 1 addition & 1 deletion src/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ abstract class Base
/**
* TCPDF version.
*/
protected string $version = '8.0.65';
protected string $version = '8.0.66';

/**
* Time is seconds since EPOCH when the document was created.
Expand Down
9 changes: 6 additions & 3 deletions src/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -2857,9 +2857,12 @@ protected function getOutSignatureDocMDP(): string
return '';
}

return ' /TransformMethod /DocMDP /TransformParams << /Type /TransformParams /P '
. $this->signature['cert_type']
. ' /V /1.2 >>';
return ' /TransformMethod /DocMDP '
. '/TransformParams <<'
. ' /Type /TransformParams'
. ' /P ' . $this->signature['cert_type']
. ' /V /1.2'
. ' >>';
}

/**
Expand Down

0 comments on commit fd36760

Please sign in to comment.