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

src/ZfTable/Example/TableExample/Advance.php 1 location

@@ 14-40 (lines=27) @@
11
12
use ZfTable\AbstractTable;
13
14
class Advance extends AbstractTable
15
{
16
17
    protected $config = array(
18
        'name' => 'Advance',
19
        'showPagination' => true,
20
        'showQuickSearch' => false,
21
        'showItemPerPage' => true,
22
    );
23
24
    /**
25
     * @var array Definition of headers
26
     */
27
    protected $headers = array(
28
        'idcustomer' => array('title' => 'Id', 'width' => '50') ,
29
        'name' => array('title' => 'Name' , 'separatable' => true),
30
        'surname' => array('title' => 'Surname' ),
31
        'street' => array('title' => 'Street'),
32
        'city' => array('title' => 'City' , 'separatable' => true),
33
        'active' => array('title' => 'Active' , 'width' => 100 ),
34
    );
35
36
    public function init()
37
    {
38
39
    }
40
}
41

src/ZfTable/Example/TableExample/CsvExport.php 1 location

@@ 13-46 (lines=34) @@
10
11
use ZfTable\AbstractTable;
12
13
class CsvExport extends AbstractTable
14
{
15
16
    protected $config = array(
17
        'name' => 'CSV Export',
18
        'showPagination' => true,
19
        'showQuickSearch' => false,
20
        'showItemPerPage' => true,
21
        'itemCountPerPage' => 10,
22
        'showExportToCSV ' => true
23
    );
24
25
    /**
26
     * @var array Definition of headers
27
     */
28
    protected $headers = array(
29
        'idcustomer' => array('title' => 'Id', 'width' => '50') ,
30
        'name' => array('title' => 'Name' ),
31
        'surname' => array('title' => 'Surname' ),
32
        'street' => array('title' => 'Street'),
33
        'city' => array('title' => 'City'),
34
        'active' => array('title' => 'Active' , 'width' => 100 ),
35
    );
36
37
    public function init()
38
    {
39
40
    }
41
42
    protected function initFilters($query)
43
    {
44
45
    }
46
}
47