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

src/Display/DisplayTabbed.php 2 locations

@@ 213-222 (lines=10) @@
210
     *
211
     * @return void
212
     */
213
    public function validateForm(\Illuminate\Http\Request $request, ModelConfigurationInterface $model = null)
214
    {
215
        $this->getTabs()->each(function ($tab) use ($request, $model) {
216
            $tabId = $request->get('sleeping_owl_tab_id');
217
218
            if ($tab instanceof FormInterface && $tab->getName() == $tabId) {
219
                $tab->validateForm($request, $model);
220
            }
221
        });
222
    }
223
224
    /**
225
     * @param \Illuminate\Http\Request $request
@@ 230-239 (lines=10) @@
227
     *
228
     * @return void
229
     */
230
    public function saveForm(\Illuminate\Http\Request $request, ModelConfigurationInterface $model = null)
231
    {
232
        $this->getTabs()->each(function (TabInterface $tab) use ($request, $model) {
233
            $tabId = $request->get('sleeping_owl_tab_id');
234
235
            if ($tab instanceof FormInterface && $tab->getName() == $tabId) {
236
                $tab->saveForm($request, $model);
237
            }
238
        });
239
    }
240
241
    /**
242
     * @return null