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

application/properties/PropertiesHelper.php 2 locations

@@ 111-115 (lines=5) @@
108
        foreach ($dynamic_by_storage['table_inheritance'] as $item) {
109
            $property = $item['property'];
110
            $clauses = [];
111
            if (isset($item['values']['min']) && strlen($item['values']['min'])) {
112
                $clauses[] = "$join_table_name." .
113
                    Yii::$app->db->quoteColumnName($property->key) . " >= " .
114
                    Yii::$app->db->quoteValue((double)($item['values']['min']));
115
            }
116
            if (isset($item['values']['max']) && strlen($item['values']['max'])) {
117
                $clauses[] = "$join_table_name." .
118
                    Yii::$app->db->quoteColumnName($property->key) . " <= " .
@@ 116-120 (lines=5) @@
113
                    Yii::$app->db->quoteColumnName($property->key) . " >= " .
114
                    Yii::$app->db->quoteValue((double)($item['values']['min']));
115
            }
116
            if (isset($item['values']['max']) && strlen($item['values']['max'])) {
117
                $clauses[] = "$join_table_name." .
118
                    Yii::$app->db->quoteColumnName($property->key) . " <= " .
119
                    Yii::$app->db->quoteValue((double)($item['values']['max']));
120
            }
121
            if (!empty($clauses)) {
122
                $ti_clauses[] = '(' . implode(" AND ", $clauses) . ')';
123
            }