Passed
Branch master (fc5382)
by Fabian
03:13
created

AbstractDNSWriter

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 1
dl 0
loc 10
ccs 0
cts 0
cp 0
c 1
b 0
f 0
1
<?php
2
3
namespace LE_ACME2\Authorizer;
4
5
use LE_ACME2\Order;
6
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
}