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

protected/extensions/bootstrap/widgets/TbDataColumn.php 1 location

@@ 33-44 (lines=12) @@
30
31
			echo $sort->link($this->name, $label, array('class'=>'sort-link'));
32
		}
33
		else
34
		{
35
			if ($this->name !== null && $this->header === null)
36
			{
37
				if ($this->grid->dataProvider instanceof CActiveDataProvider)
38
					echo CHtml::encode($this->grid->dataProvider->model->getAttributeLabel($this->name));
39
				else
40
					echo CHtml::encode($this->name);
41
			}
42
			else
43
				parent::renderHeaderCellContent();
44
		}
45
	}
46
47
	/**

protected/extensions/jtogglecolumn/JToggleColumn.php 1 location

@@ 217-225 (lines=9) @@
214
  {
215
    if( $this->grid->enableSorting && $this->sortable && $this->name !== null )
216
      echo $this->grid->dataProvider->getSort()->link($this->name, $this->header);
217
    else if( $this->name !== null && $this->header === null )
218
    {
219
      if( $this->grid->dataProvider instanceof CActiveDataProvider )
220
        echo CHtml::encode($this->grid->dataProvider->model->getAttributeLabel($this->name));
221
      else
222
        echo CHtml::encode($this->name);
223
    }
224
    else
225
      parent::renderHeaderCellContent();
226
  }
227
228
  /**