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

@@ 157-164 (lines=8) @@
154
        $this->assertEquals('wwww', $refPropInit->getValue($entry));
155
    }
156
157
    public function testSerialize()
158
    {
159
        set_error_handler(function () {
160
            TestCase::assertEquals('Метод OldTown\Workflow\Spi\SimpleWorkflowEntry::serialize класса OldTown\Workflow\Spi\SimpleWorkflowEntry требуется реализовать', func_get_arg(1));
161
        });
162
        $entry = new SimpleWorkflowEntry(null, null, null);
163
        $entry->serialize();
164
    }
165
166
    public function testUnserialize()
167
    {
@@ 166-173 (lines=8) @@
163
        $entry->serialize();
164
    }
165
166
    public function testUnserialize()
167
    {
168
        set_error_handler(function () {
169
            TestCase::assertEquals('Метод OldTown\Workflow\Spi\SimpleWorkflowEntry::unserialize класса OldTown\Workflow\Spi\SimpleWorkflowEntry требуется реализовать', func_get_arg(1));
170
        });
171
        $entry = new SimpleWorkflowEntry(null, null, null);
172
        $entry->unserialize(null);
173
    }
174
}
175