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

src/ZfTable/Controller/TableController.php 16 locations

@@ 83-91 (lines=9) @@
80
    public function additionalParamsAction()
81
    {
82
    }
83
    public function ajaxadditionalParamsAction()
84
    {
85
        $table = new TableExample\AdditionalParams();
86
        $table->setAdapter($this->getDbAdapter())
87
                ->setSource($this->getSource())
88
                ->setParamAdapter($this->getRequest()->getPost())
89
        ;
90
        return $this->htmlResponse($table->render());
91
    }
92
93
    /**
94
     * ********* Javascript Events *******************
@@ 100-108 (lines=9) @@
97
    public function javascriptEventsAction()
98
    {
99
    }
100
    public function ajaxJavascriptEventsAction()
101
    {
102
        $table = new TableExample\JavascriptEvents();
103
        $table->setAdapter($this->getDbAdapter())
104
                ->setSource($this->getSource())
105
                ->setParamAdapter($this->getRequest()->getPost())
106
        ;
107
        return $this->htmlResponse($table->render());
108
    }
109
110
111
    /**
@@ 189-197 (lines=9) @@
186
    public function callableAction()
187
    {
188
    }
189
    public function ajaxCallableAction()
190
    {
191
        $table = new TableExample\CallableTable();
192
        $table->setAdapter($this->getDbAdapter())
193
                ->setSource($this->getSource())
194
                ->setParamAdapter($this->getRequest()->getPost())
195
        ;
196
        return $this->htmlResponse($table->render());
197
    }
198
199
200
@@ 208-216 (lines=9) @@
205
    public function columnFilteringAction()
206
    {
207
    }
208
    public function ajaxColumnFilteringAction()
209
    {
210
        $table = new TableExample\ColumnFiltering();
211
        $table->setAdapter($this->getDbAdapter())
212
                ->setSource($this->getSource())
213
                ->setParamAdapter($this->getRequest()->getPost())
214
        ;
215
        return $this->htmlResponse($table->render());
216
    }
217
218
219
    /**
@@ 226-234 (lines=9) @@
223
    public function editableAction()
224
    {
225
    }
226
    public function ajaxEditableAction()
227
    {
228
        $table = new TableExample\Editable();
229
        $table->setAdapter($this->getDbAdapter())
230
                ->setSource($this->getSource())
231
                ->setParamAdapter($this->getRequest()->getPost())
232
        ;
233
        return $this->htmlResponse($table->render());
234
    }
235
236
    public function updateRowAction()
237
    {
@@ 254-262 (lines=9) @@
251
    public function csvExportAction()
252
    {
253
    }
254
    public function ajaxCsvExportAction()
255
    {
256
        $table = new TableExample\CsvExport();
257
        $table->setAdapter($this->getDbAdapter())
258
                ->setSource($this->getSource())
259
                ->setParamAdapter($this->getRequest()->getPost())
260
        ;
261
        return $this->htmlResponse($table->render());
262
    }
263
264
    /**
265
     * ********* SEPARATABLE *******************
@@ 301-309 (lines=9) @@
298
    {
299
300
    }
301
    public function ajaxNewPluginConditionAction()
302
    {
303
        $table = new TableExample\NewPluginCondition();
304
        $table->setAdapter($this->getDbAdapter())
305
                ->setSource($this->getSource())
306
                ->setParamAdapter($this->getRequest()->getPost())
307
        ;
308
        return $this->htmlResponse($table->render());
309
    }
310
311
312
@@ 320-328 (lines=9) @@
317
    public function baseAction()
318
    {
319
    }
320
    public function ajaxBaseAction()
321
    {
322
        $table = new TableExample\Base();
323
        $table->setAdapter($this->getDbAdapter())
324
                ->setSource($this->getSource())
325
                ->setParamAdapter($this->getRequest()->getPost())
326
        ;
327
        return $this->htmlResponse($table->render());
328
    }
329
330
331
    /**
@@ 340-349 (lines=10) @@
337
338
    }
339
340
    public function ajaxMapperAction()
341
    {
342
        $table = new TableExample\Mapper();
343
        $table->setAdapter($this->getDbAdapter())
344
                ->setSource($this->getSource())
345
                ->setParamAdapter($this->getRequest()->getPost())
346
        ;
347
        return $this->htmlResponse($table->render());
348
349
    }
350
351
    /**
352
     * ********* Link *******************
@@ 360-368 (lines=9) @@
357
358
    }
359
360
    public function ajaxLinkAction()
361
    {
362
        $table = new TableExample\Link();
363
        $table->setAdapter($this->getDbAdapter())
364
                ->setSource($this->getSource())
365
                ->setParamAdapter($this->getRequest()->getPost())
366
        ;
367
        return $this->htmlResponse($table->render());
368
    }
369
370
371
     /**
@@ 380-388 (lines=9) @@
377
378
    }
379
380
    public function ajaxTemplateAction()
381
    {
382
        $table = new TableExample\Template();
383
        $table->setAdapter($this->getDbAdapter())
384
                ->setSource($this->getSource())
385
                ->setParamAdapter($this->getRequest()->getPost())
386
        ;
387
        return $this->htmlResponse($table->render());
388
    }
389
390
391
     /**
@@ 400-408 (lines=9) @@
397
398
    }
399
400
    public function ajaxAttrAction()
401
    {
402
        $table = new TableExample\Attr();
403
        $table->setAdapter($this->getDbAdapter())
404
                ->setSource($this->getSource())
405
                ->setParamAdapter($this->getRequest()->getPost())
406
        ;
407
        return $this->htmlResponse($table->render());
408
    }
409
410
411
    /**
@@ 420-428 (lines=9) @@
417
418
    }
419
420
    public function ajaxConditionAction()
421
    {
422
        $table = new TableExample\Condition();
423
        $table->setAdapter($this->getDbAdapter())
424
                ->setSource($this->getSource())
425
                ->setParamAdapter($this->getRequest()->getPost())
426
        ;
427
        return $this->htmlResponse($table->render());
428
    }
429
430
431
    /**
@@ 440-448 (lines=9) @@
437
438
    }
439
440
    public function ajaxMixAction()
441
    {
442
        $table = new TableExample\Mix();
443
        $table->setAdapter($this->getDbAdapter())
444
                ->setSource($this->getSource())
445
                ->setParamAdapter($this->getRequest()->getPost())
446
        ;
447
        return $this->htmlResponse($table->render());
448
    }
449
450
     /**
451
     * ********* Advance *******************
@@ 459-468 (lines=10) @@
456
457
    }
458
459
    public function ajaxAdvanceAction()
460
    {
461
        $table = new TableExample\Advance();
462
        $table->setAdapter($this->getDbAdapter())
463
                ->setSource($this->getSource())
464
                ->setParamAdapter($this->getRequest()->getPost())
465
        ;
466
        return $this->htmlResponse($table->render('custom', 'custom-b3'));
467
468
    }
469
470
471
@@ 552-559 (lines=8) @@
549
    {
550
    }
551
552
    public function ajaxInstitutionRequestsAction()
553
    {
554
        $table = new TableExample\InstitutionRequests();
555
        $table->setAdapter($this->getDbAdapter())
556
                ->setSource($this->getInstitutionRequests())
557
                ->setParamAdapter($this->getRequest()->getPost());
558
        return $this->htmlResponse($table->render());
559
    }
560
561
    /**
562
     * @return \Zend\Db\Sql\Select Type