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

src/Display/DisplayTab.php 2 locations

@@ 180-190 (lines=11) @@
177
                    );
178
                }
179
180
                if ($element instanceof FormElements) {
181
                    foreach ($element->getElements() as $subElement) {
182
                        if ($subElement instanceof FormDefault) {
183
                            $subElement->addElement(
184
                                new FormElements([
185
                                    (new Hidden('sleeping_owl_tab_id'))->setDefaultValue($this->getName()),
186
                                ])
187
                            );
188
                        }
189
                    }
190
                }
191
192
                if ($element instanceof Columns) {
193
                    foreach ($element->getElements() as $column) {
@@ 194-204 (lines=11) @@
191
192
                if ($element instanceof Columns) {
193
                    foreach ($element->getElements() as $column) {
194
                        if ($column instanceof Column) {
195
                            foreach ($column->getElements() as $columnElement) {
196
                                if ($columnElement instanceof FormInterface) {
197
                                    $columnElement->addElement(
198
                                        new FormElements([
199
                                            (new Hidden('sleeping_owl_tab_id'))->setDefaultValue($this->getName()),
200
                                        ])
201
                                    );
202
                                }
203
                            }
204
                        }
205
                    }
206
                }
207
            }