We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c768cfa commit cb4ba99Copy full SHA for cb4ba99
1 file changed
src/Sign/JSignParam.php
@@ -123,17 +123,17 @@ public function setIsOutputTypeBase64(bool $isOutputTypeBase64)
123
124
public function getTempPdfPath()
125
{
126
- return $this->getTempPath() . DIRECTORY_SEPARATOR . $this->getTempName('.pdf');
+ return $this->getTempPath() . $this->getTempName('.pdf');
127
}
128
129
public function getTempPdfSignedPath()
130
131
- return $this->getPathPdfSigned() . DIRECTORY_SEPARATOR . $this->getTempName('_signed.pdf');
+ return $this->getPathPdfSigned() . $this->getTempName('_signed.pdf');
132
133
134
public function getTempCertificatePath()
135
136
- return $this->getTempPath() . DIRECTORY_SEPARATOR . $this->getTempName('.pfx');
+ return $this->getTempPath() . $this->getTempName('.pfx');
137
138
139
-}
+}
0 commit comments