Table::init()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
ccs 0
cts 4
cp 0
crap 2
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