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/components/image/FActiveImage.php 1 location

@@ 122-132 (lines=11) @@
119
   *
120
   * @return string
121
   */
122
  protected function getFullPath($name = null)
123
  {
124
    if( empty($name) )
125
    {
126
      return $this->getPath() . $this->name;
127
    }
128
    else
129
    {
130
      return $this->getPath() . $name . '_' . $this->name;
131
    }
132
  }
133
}

protected/components/image/FSingleImage.php 1 location

@@ 144-154 (lines=11) @@
141
   *
142
   * @return string
143
   */
144
  protected function getFullPath($name = null)
145
  {
146
    if( empty($name) )
147
    {
148
      return $this->getPath() . $this->name;
149
    }
150
    else
151
    {
152
      return $this->getPath() . $name . '_' . $this->name;
153
    }
154
  }
155
}