Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
24 | class Reader extends SecurityTxt implements SecurityTxtInterface |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * Create a new Reader instance. |
||
29 | * |
||
30 | * @return Reader|SecurityTxt |
||
31 | */ |
||
32 | 3 | public function __construct() |
|
33 | { |
||
34 | 3 | return parent::__construct($this); |
|
35 | } |
||
36 | |||
37 | /** |
||
38 | * Placeholder execute function until this class is flushed out. |
||
39 | * |
||
40 | * @param bool $test_case |
||
41 | * |
||
42 | * @return Reader |
||
43 | * @throws Exception |
||
44 | */ |
||
45 | 1 | public function execute(bool $test_case = false) |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * Placeholder reset function until this class is flushed out. |
||
52 | * |
||
53 | * @param bool $test_case |
||
54 | * |
||
55 | * @return Reader |
||
56 | * @throws Exception |
||
57 | */ |
||
58 | 1 | public function reset(bool $test_case = false) |
|
61 | } |
||
62 | } |
||
63 |