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

symphony/lib/toolkit/fields/field.select.php 1 location

@@ 234-236 (lines=3) @@
231
            // Dynamic Options isn't an array like in Select Box Link
232
            $field_id = $this->get('dynamic_options');
233
234
            if (!is_null($field_id) && is_numeric($field_id)) {
235
                SectionManager::createSectionAssociation(null, $id, (int)$field_id,
236
                    $this->get('show_association') === 'yes' ? true : false, $this->get('association_ui'),
237
                    $this->get('association_editor'));
238
            }
239

symphony/lib/toolkit/fields/field.taglist.php 1 location

@@ 298-300 (lines=3) @@
295
                        continue;
296
                    }
297
298
                    if (!is_null($field_id) && is_numeric($field_id)) {
299
                        SectionManager::createSectionAssociation(null, $id, (int)$field_id,
300
                            $this->get('show_association') === 'yes' ? true : false, $this->get('association_ui'),
301
                            $this->get('association_editor'));
302
                    }
303
                }