📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: Reissue.php
<?php namespace App\Service\Certificate; use App\Entity\Certificate as CertificateEntity; use App\Exception\ActivateException; use App\Service\NcGatewayApi\Exceptions\NcGatewayApiException; class Reissue extends AbstractActivate { /** * @throws NcGatewayApiException */ protected function makeExternalCall(CertificateTransfer $certificateTransfer, string $csr, bool $isAsyncExternalCall): void { $result = $this->ncGatewayApi->reissue( $certificateTransfer->getCertificateId(), $csr, $certificateTransfer->getNCUser(), $certificateTransfer->getAdminEmail() ); $certificateTransfer->setCertificateId($result['child_id']); $certificateTransfer->setDcvFiles($this->extractDcvList($result, $certificateTransfer->getDomainName())); $certificateTransfer->setNCStatus(CertificateEntity::NCSTATUS_ORDERCREATED); } /** * @param CertificateTransfer $data * @throws ActivateException */ public function reissueStart(CertificateTransfer $data): void { $this->logger->notice(sprintf(self::MESSAGE_START_REISSUE, $data->getCertificateId())); $this->makeAction($data); } }
Save