Completed
Push — master ( defe41...55d6e9 )
by Derek Stephen
06:59
created

Paginator::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Del\Common\View\Helper;
4
5
6
class Paginator
7
{
8
    /**
9
     * @return string
10
     */
11 1
    public function render()
12
    {
13 1
        $html = '';
14 1
        return $html;
15
    }
16
}