Passed
Push — master ( e45b53...cf614d )
by Austin
01:43
created

Reader::setDebug()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 5
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 5
loc 5
rs 9.4285
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.3.0
8
 */
9
10
declare(strict_types=1);
11
12
namespace AustinHeap\Security\Txt;
13
14
/**
15
 * Reader
16
 *
17
 * @link        https://github.com/austinheap/php-security-txt
18
 * @link        https://packagist.org/packages/austinheap/php-security-txt
19
 * @link        https://austinheap.github.io/php-security-txt/classes/AustinHeap.Security.Txt.Reader.html
20
 */
21
class Reader extends SecurityTxt
22
{
23
24
    /**
25
     * Create a new Reader instance.
26
     *
27
     * @return Reader
28
     */
29
    public function __construct()
30
    {
31
        return parent::__construct($this);
32
    }
33
34
}
35