Completed
Push — 3.1 ( 7e9d2a...4fdd2b )
by Piotr
13:37 queued 13:35
created

MyList::getDataIndexer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FSi\Bundle\AdminBundle\spec\fixtures;
6
7
use FSi\Bundle\AdminBundle\Admin\CRUD\GenericListElement;
8
use FSi\Component\DataGrid\DataGridFactoryInterface;
9
use FSi\Component\DataGrid\DataGridInterface;
10
use FSi\Component\DataIndexer\DataIndexerInterface;
11
use FSi\Component\DataSource\DataSourceFactoryInterface;
12
use FSi\Component\DataSource\DataSourceInterface;
13
14
class MyList extends GenericListElement
15
{
16
    public function getId(): string
17
    {
18
    }
19
20
    protected function initDataGrid(DataGridFactoryInterface $factory): DataGridInterface
21
    {
22
    }
23
24
    protected function initDataSource(DataSourceFactoryInterface $factory): DataSourceInterface
25
    {
26
    }
27
28
    public function getDataIndexer(): DataIndexerInterface
29
    {
30
    }
31
32
    public function saveDataGrid(): void
33
    {
34
    }
35
}
36