GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 79a219...884dd9 )
by Tomasz
01:20
created

ProcessorContext::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
namespace Thunder\Shortcode\Processor;
3
4
use Thunder\Shortcode\Shortcode\ProcessedShortcode;
5
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
6
7
/**
8
 * @author Tomasz Kowalczyk <[email protected]>
9
 */
10
final class ProcessorContext
11
{
12
    /**
13
     * @var ShortcodeInterface
14
     * @psalm-suppress PropertyNotSetInConstructor
15
     */
16
    public $shortcode;
17
18
    /** @var ProcessedShortcode|null */
19
    public $parent = null;
20
21
    /**
22
     * @var ProcessorInterface
23
     * @psalm-suppress PropertyNotSetInConstructor
24
     */
25
    public $processor;
26
27
    /**
28
     * @var string
29
     * @psalm-suppress PropertyNotSetInConstructor
30
     */
31
    public $textContent;
32
    /** @var int */
33
    public $position = 0;
34
    /** @psalm-var array<string,int> */
35
    public $namePosition = array();
36
    /** @var string */
37
    public $text = '';
38
    /** @var string */
39
    public $shortcodeText = '';
40
    /** @var int */
41
    public $iterationNumber = 0;
42
    /** @var int */
43
    public $recursionLevel = 0;
44
    /**
45
     * @var int
46
     * @psalm-suppress PropertyNotSetInConstructor
47
     */
48
    public $offset;
49
    /**
50
     * @var int
51
     * @psalm-suppress PropertyNotSetInConstructor
52
     */
53
    public $baseOffset;
54
55 59
    public function __construct()
56
    {
57 59
    }
58
}
59