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.

Code Duplication    Length = 8-8 lines in 2 locations

test/phpunit/tests/Spi/SimpleWorkflowEntryTest.php 2 locations

@@ 105-112 (lines=8) @@
102
        $this->assertFalse($refPropInit->getValue($entry));
103
    }
104
105
    public function testGetState()
106
    {
107
        $entry = new SimpleWorkflowEntry(null, null, 2);
108
        $this->assertEquals(2, $entry->getState());
109
110
        $entry = new SimpleWorkflowEntry(null, null, 99);
111
        $this->assertEquals(99, $entry->getState());
112
    }
113
114
    public function testSetCorrectState()
115
    {
@@ 132-139 (lines=8) @@
129
        $entry->setState('nonumeric');
130
    }
131
132
    public function testGetWorkflowName()
133
    {
134
        $entry = new SimpleWorkflowEntry(null, null, null);
135
        $this->assertEquals('', $entry->getWorkflowName());
136
137
        $entry = new SimpleWorkflowEntry(null, 'asdadssd', null);
138
        $this->assertEquals('asdadssd', $entry->getWorkflowName());
139
    }
140
141
    public function testSetWorkflowName()
142
    {