Total Complexity | 0 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class AbstractDNSWriter { |
||
8 | |||
9 | /** |
||
10 | * @param Order $order |
||
11 | * @param string $identifier |
||
12 | * @param string $digest |
||
13 | * |
||
14 | * @return bool return true, if the dns configuration is usable and the process should be progressed |
||
15 | */ |
||
16 | abstract public function write(Order $order, string $identifier, string $digest) : bool; |
||
17 | } |