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

application/properties/DynamicSearchModel.php 2 locations

@@ 85-89 (lines=5) @@
82
                            'ti.object_model_id = ' . $baseModelTableName . '.id');
83
                    }
84
85
                    if ($prop->value_type === 'STRING' && $prop->property_handler_id !== 3) {
86
                        $query->andFilterWhere(['like', 'ti.'.$prop->key, $this->{$prop->key}]);
87
                    } else {
88
                        $query->andFilterWhere(['ti.'.$prop->key => $this->{$prop->key}]);
89
                    }
90
91
                } elseif ($prop->is_eav) {
92
                    $eavJoinsCount++;
@@ 103-109 (lines=7) @@
100
                        $eavTableName.'.object_model_id = '.$baseModelTableName.".id AND $eavTableName.key=:$key",
101
                        [$key=>$prop->key]
102
                    );
103
                    if ($prop->value_type === 'STRING' && $prop->property_handler_id !== 3) {
104
                        $query->andFilterWhere(['like', $eavTableName.'.value', $this->{$prop->key}]);
105
                    } else {
106
                        // numeric - direct match
107
                        $query->andFilterWhere([$eavTableName.'.value' => $this->{$prop->key}]);
108
109
                    }
110
111
                } elseif ($prop->has_static_values) {
112
                    $osvJoinsCount++;