| 1 | <?php |
||
| 8 | abstract class CertificateCommand extends ResourceCommand |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Resource path. |
||
| 12 | * |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | public function resourcePath() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Resource class name. |
||
| 22 | * |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function resourceClass() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Certificate operation type. |
||
| 32 | * |
||
| 33 | * @param string $type |
||
| 34 | * |
||
| 35 | * @return static |
||
| 36 | */ |
||
| 37 | public function operationType(string $type) |
||
| 41 | } |
||
| 42 |