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

Reader   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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