Completed
Push — master ( 209945...41a4bc )
by Matthew
07:41 queued 03:34
created

TestGridSource   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getRecords() 0 2 1
A getCount() 0 2 1
A remove() 0 2 1
1
<?php
2
3
namespace Dtc\GridBundle\Tests\Grid\Source;
4
5
use Dtc\GridBundle\Grid\Source\AbstractGridSource;
6
7
class TestGridSource extends AbstractGridSource
8
{
9
    public function getRecords()
10
    {
11
    }
12
13
    public function getCount()
14
    {
15
    }
16
17
    public function remove($id)
18
    {
19
    }
20
}
21