Completed
Push — master ( 81c6e7...6c71bd )
by Piotr
02:30
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
1
<?php
2
3
namespace FSi\Bundle\AdminBundle\spec\fixtures;
4
5
use FSi\Bundle\AdminBundle\Admin\CRUD\GenericBatchElement;
6
7
class MyBatch extends GenericBatchElement
8
{
9
    public function getId()
10
    {
11
    }
12
13
    public function getDataIndexer()
14
    {
15
    }
16
17
    public function apply($object)
18
    {
19
    }
20
}
21