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

src/Form/Element/MultiSelectAjax.php 1 location

@@ 150-154 (lines=5) @@
147
            }
148
        }
149
150
        if (count($this->getFetchColumns()) > 0) {
151
            $options->select(
152
                array_merge([$key], $this->getFetchColumns())
153
            );
154
        }
155
156
        // call the pre load options query preparer if has be set
157
        if (! is_null($preparer = $this->getLoadOptionsQueryPreparer())) {

src/Traits/SelectOptionsFromModel.php 1 location

@@ 212-216 (lines=5) @@
209
            }
210
        }
211
212
        if (count($this->getFetchColumns()) > 0) {
213
            $options->select(
214
                array_merge([$key], $this->getFetchColumns())
215
            );
216
        }
217
218
        // call the pre load options query preparer if has be set
219
        if (! is_null($preparer = $this->getLoadOptionsQueryPreparer())) {