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

protected/models/seo/Link.php 2 locations

@@ 98-108 (lines=11) @@
95
   *
96
   * @return Link
97
   */
98
  public function onPage($page)
99
  {
100
    $this->getDbCriteria()->mergeWith([
101
      'condition' => 'page = :page',
102
      'params' => [
103
        ':page' => strval($page),
104
      ],
105
    ]);
106
107
    return $this;
108
  }
109
110
  /**
111
   * Ссылки в указанной секции.
@@ 117-127 (lines=11) @@
114
   *
115
   * @return Link
116
   */
117
  public function inSection($sectionId)
118
  {
119
    $this->getDbCriteria()->mergeWith([
120
      'condition' => 'section_id = :sectionId',
121
      'params' => [
122
        ':sectionId' => strval($sectionId),
123
      ],
124
    ]);
125
126
    return $this;
127
  }
128
129
  /**
130
   * Ссылки на всех страницах перед указанной.