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