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.

DummyStep::getActionId()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * @link    https://github.com/old-town/old-town-workflow
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace OldTown\Workflow\JoinNodes;
7
8
/**
9
 * Class DummyStep
10
 *
11
 * @package OldTown\Workflow\JoinNodes
12
 */
13
class DummyStep
14
{
15
    /**
16
     * @return int
17
     */
18
    public function getActionId()
19
    {
20
        return -1;
21
    }
22
23
    /**
24
     * @return null
25
     */
26
    public function getCaller()
27
    {
28
        return null;
29
    }
30
31
    /**
32
     * @return null
33
     */
34
    public function getDueDate()
35
    {
36
        return null;
37
    }
38
39
    /**
40
     * @return int
41
     */
42
    public function getEntryId()
43
    {
44
        return -1;
45
    }
46
47
    /**
48
     * @return null
49
     */
50
    public function getFinishDate()
51
    {
52
        return null;
53
    }
54
55
    /**
56
     * @return int
57
     */
58
    public function getId()
59
    {
60
        return -1;
61
    }
62
63
    /**
64
     * @return null
65
     */
66
    public function getOwner()
67
    {
68
        return null;
69
    }
70
71
    /**
72
     * @return array
73
     */
74
    public function getPreviousStepIds()
75
    {
76
        return [];
77
    }
78
79
    /**
80
     * @return null
81
     */
82
    public function getStartDate()
83
    {
84
        return null;
85
    }
86
87
    /**
88
     * @return null
89
     */
90
    public function getStatus()
91
    {
92
        return null;
93
    }
94
95
96
    /**
97
     * @return int
98
     */
99
    public function getStepId()
100
    {
101
        return -1;
102
    }
103
}
104