Completed
Push — master ( 81c6e7...6c71bd )
by Piotr
02:30
created

MyList   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 1
dl 0
loc 22
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace FSi\Bundle\AdminBundle\spec\fixtures;
4
5
use FSi\Bundle\AdminBundle\Admin\CRUD\GenericListElement;
6
use FSi\Component\DataGrid\DataGridFactoryInterface;
7
use FSi\Component\DataSource\DataSourceFactoryInterface;
8
9
class MyList extends GenericListElement
10
{
11
    public function getId()
12
    {
13
    }
14
15
    protected function initDataGrid(DataGridFactoryInterface $factory)
16
    {
17
    }
18
19
    protected function initDataSource(DataSourceFactoryInterface $factory)
20
    {
21
    }
22
23
    public function getDataIndexer()
24
    {
25
    }
26
27
    public function saveDataGrid()
28
    {
29
    }
30
}
31