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/MultilingualBehaviorAbridgeTest.php 1 location

@@ 189-196 (lines=8) @@
186
        ]);
187
    }
188
189
    public function testDeletePost()
190
    {
191
        $post = Post::findOne(2);
192
        $this->assertEquals(1, $post->delete());
193
        $dataSet = $this->getConnection()->createDataSet(['post', 'postLang']);
194
        $expectedDataSet = $this->createFlatXMLDataSet(__DIR__ . '/data/test-delete-post.xml');
195
        $this->assertDataSetsEqual($expectedDataSet, $dataSet);
196
    }
197
198
    public function testLocalizedAndMultilingual()
199
    {

tests/MultilingualBehaviorTest.php 1 location

@@ 113-120 (lines=8) @@
110
        ]);
111
    }
112
113
    public function testDeletePost()
114
    {
115
        $post = Post::findOne(2);
116
        $this->assertEquals(1, $post->delete());
117
        $dataSet = $this->getConnection()->createDataSet(['post', 'postLang']);
118
        $expectedDataSet = $this->createFlatXMLDataSet(__DIR__ . '/data/test-delete-post-na.xml');
119
        $this->assertDataSetsEqual($expectedDataSet, $dataSet);
120
    }
121
122
    /**
123
     * @inheritdoc