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

backend/protected/modules/user/models/BUserProfile.php 1 location

@@ 55-67 (lines=13) @@
52
  /**
53
   * @return array
54
   */
55
  public function attributeLabels()
56
  {
57
    return array(
58
      'name'         => 'Имя',
59
      'last_name'    => 'Фамилия',
60
      'patronymic'   => 'Отчество',
61
      'phone'        => 'Контактный телефон',
62
      'address'      => 'Адрес',
63
      'birthday'     => 'Дата рождения',
64
      'coordinates'  => 'Координаты',
65
      'discount' => 'Персональная скидка (%)'
66
    );
67
  }
68
69
  /**
70
   * @return string

protected/models/user/UserProfile.php 1 location

@@ 40-52 (lines=13) @@
37
    );
38
  }
39
40
  public function attributeLabels()
41
  {
42
    return CMap::mergeArray(parent::attributeLabels(), array(
43
      'name' => 'Имя',
44
      'last_name' => 'Фамилия',
45
      'patronymic' => 'Отчество',
46
      'phone' => 'Контактный телефон',
47
      'address' => 'Адрес',
48
      'bicycle' => 'Модель велосипеда',
49
      'birthday' => 'Дата рождения',
50
      'discount' => 'Персональная скидка'
51
    ));
52
  }
53
}