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 = 9-9 lines in 2 locations

application/models/BaseObject.php 2 locations

@@ 198-206 (lines=9) @@
195
        return static::$select_array_cache;
196
    }
197
198
    public function getLastExport()
199
    {
200
        return $this->hasOne(Export::className(), ['object_id' => 'id'])
201
            ->andOnCondition(
202
                [
203
                    Export::tableName() . '.user_id' => Yii::$app->user->id,
204
                ]
205
            );
206
    }
207
208
    public function getLastImport()
209
    {
@@ 208-216 (lines=9) @@
205
            );
206
    }
207
208
    public function getLastImport()
209
    {
210
        return $this->hasOne(Import::className(), ['object_id' => 'id'])
211
            ->andOnCondition(
212
                [
213
                    Import::tableName() . '.user_id' => Yii::$app->user->id,
214
                ]
215
            );
216
    }
217
218
    /**
219
     * @return string