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

backend/protected/modules/contact/controllers/BContactController.php 2 locations

@@ 279-287 (lines=9) @@
276
  /**
277
   * Сортировка полей группы
278
   */
279
  protected function sortFields()
280
  {
281
    foreach( Yii::app()->request->getPost('sort') as $sortItem )
282
    {
283
      $field           = BContactField::model()->findByPk($sortItem['id']);
284
      $field->position = $sortItem['position'];
285
      $field->save();
286
    }
287
  }
288
289
  /**
290
   * Сортировка текстовых блоков
@@ 292-300 (lines=9) @@
289
  /**
290
   * Сортировка текстовых блоков
291
   */
292
  protected function sortTextBlocks()
293
  {
294
    foreach( Yii::app()->request->getPost('sort') as $sortItem )
295
    {
296
      $textblock = BContactTextBlock::model()->findByPk($sortItem['id']);
297
      $textblock->position = $sortItem['position'];
298
      $textblock->save();
299
    }
300
  }
301
302
  /**
303
   * @inheritdoc