Completed
Pull Request — 3.1 (#348)
by Piotr
20:24
created

MyBatch   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 1
dl 0
loc 14
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getId() 0 3 1
A getDataIndexer() 0 3 1
A apply() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FSi\Bundle\AdminBundle\spec\fixtures;
6
7
use FSi\Bundle\AdminBundle\Admin\CRUD\GenericBatchElement;
8
use FSi\Component\DataIndexer\DataIndexerInterface;
9
10
class MyBatch extends GenericBatchElement
11
{
12
    public function getId(): string
13
    {
14
    }
15
16
    public function getDataIndexer(): DataIndexerInterface
17
    {
18
    }
19
20
    public function apply($object): void
21
    {
22
    }
23
}
24