| 1 | <?php |
||
| 5 | class InstallCertificateCommand extends CertificateCommand |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Set private key. |
||
| 9 | * |
||
| 10 | * @param string $privateKey |
||
| 11 | * |
||
| 12 | * @return static |
||
| 13 | */ |
||
| 14 | public function usingPivateKey(string $privateKey) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Set certificate content. |
||
| 21 | * |
||
| 22 | * @param string $certificate |
||
| 23 | * |
||
| 24 | * @return static |
||
| 25 | */ |
||
| 26 | public function usingCertificate(string $certificate) |
||
| 30 | } |
||
| 31 |