Skip to content

Commit cb4ba99

Browse files
authored
Update JSignParam.php
1 parent c768cfa commit cb4ba99

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Sign/JSignParam.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,17 @@ public function setIsOutputTypeBase64(bool $isOutputTypeBase64)
123123

124124
public function getTempPdfPath()
125125
{
126-
return $this->getTempPath() . DIRECTORY_SEPARATOR . $this->getTempName('.pdf');
126+
return $this->getTempPath() . $this->getTempName('.pdf');
127127
}
128128

129129
public function getTempPdfSignedPath()
130130
{
131-
return $this->getPathPdfSigned() . DIRECTORY_SEPARATOR . $this->getTempName('_signed.pdf');
131+
return $this->getPathPdfSigned() . $this->getTempName('_signed.pdf');
132132
}
133133

134134
public function getTempCertificatePath()
135135
{
136-
return $this->getTempPath() . DIRECTORY_SEPARATOR . $this->getTempName('.pfx');
136+
return $this->getTempPath() . $this->getTempName('.pfx');
137137
}
138138

139-
}
139+
}

0 commit comments

Comments
 (0)