Table   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 3
dl 0
loc 6
rs 10
c 1
b 0
f 0
ccs 0
cts 4
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 4 1
1
<?php
2
/**
3
 * @link http://www.newicon.net/neon
4
 * @copyright Copyright (c) 2017 Newicon Ltd
5
 * @license http://www.newicon.net/neon/license/
6
 * @author Steve O'Brien <[email protected]> 19/04/2020
7
 * @package neon
8
 */
9
10
namespace neon\daedalus\grid;
11
12
13
use neon\core\grid\DdsGrid;
14
15
class Table extends DdsGrid
16
{
17
	public function init()
18
	{
19
		parent::init();
20
		$this->setPageSize(20);
21
	}
22
}
23