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

tests/AdjacencyListBehaviorTestCase.php 2 locations

@@ 150-157 (lines=8) @@
147
        $this->assertEquals(true, $node->isRelationPopulated('children'));
148
    }
149
150
    public function testIsRoot()
151
    {
152
        $this->assertTrue(Node::findOne(41)->isRoot());
153
        $this->assertTrue(NodeJoin::findOne(41)->isRoot());
154
155
        $this->assertFalse(Node::findOne(21)->isRoot());
156
        $this->assertFalse(NodeJoin::findOne(21)->isRoot());
157
    }
158
159
    public function testIsChildOf()
160
    {
@@ 180-187 (lines=8) @@
177
        $this->assertFalse(NodeJoin::findOne(10)->isChildOf(Node::findOne(43)));
178
    }
179
180
    public function testIsLeaf()
181
    {
182
        $this->assertTrue(Node::findOne(22)->isLeaf());
183
        $this->assertTrue(NodeJoin::findOne(22)->isLeaf());
184
185
        $this->assertFalse(Node::findOne(45)->isLeaf());
186
        $this->assertFalse(NodeJoin::findOne(45)->isLeaf());
187
    }
188
189
    public function testGetParentsIds()
190
    {