Completed
Push — master ( e17d9a...f8eac8 )
by Austin
01:42
created

Reader::reset()   A

Complexity

Conditions 1
Paths 0

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 0
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * src/Reader.php
4
 *
5
 * @package     php-security-txt
6
 * @author      Austin Heap <[email protected]>
7
 * @version     v0.4.0
8
 */
9
10
declare(strict_types = 1);
11
12
namespace AustinHeap\Security\Txt;
13
14
use Exception;
15
16
/**
17
 * Reader
18
 *
19
 * @link        https://github.com/austinheap/php-security-txt
20
 * @link        https://packagist.org/packages/austinheap/php-security-txt
21
 * @link        https://austinheap.github.io/php-security-txt/classes/AustinHeap.Security.Txt.Reader.html
22
 */
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)
45
    {
46
        throw new Exception('Function not implemented.');
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)
58
    {
59
        throw new Exception('Function not implemented.');
60
    }
61
}
62