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

backend/protected/modules/product/ParametersWidget.php 2 locations

@@ 106-110 (lines=5) @@
103
        echo CHtml::activeTextField($param, "[$param->id]value");
104
      break;
105
106
      case 'checkbox':
107
        echo CHtml::tag('div', array('style' => 'float: left'), false, false);
108
        echo $this->form->checkBoxList($param, "[$param->id]value", CHtml::listData($param->variants, 'id', 'name'), array('template' => '<span class="{labelCssClass}">{input}{label}</span>'));
109
        echo CHtml::closeTag('div');
110
      break;
111
112
      case 'select':
113
        echo $this->form->dropDownList($param, "[$param->id]value", array('' => 'Не задано') + CHtml::listData($param->variants, 'id', 'name'));
@@ 116-120 (lines=5) @@
113
        echo $this->form->dropDownList($param, "[$param->id]value", array('' => 'Не задано') + CHtml::listData($param->variants, 'id', 'name'));
114
      break;
115
116
      case 'radio':
117
        echo CHtml::tag('div', array('style' => 'float: left'), false, false);
118
        echo $this->form->radioButtonList($param, "[$param->id]value", CHtml::listData($param->variants, 'id', 'name'));
119
        echo CHtml::closeTag('div');
120
      break;
121
    }
122
  }
123