Completed
Pull Request — 3.1 (#348)
by Piotr
01:23
created

MyDependentBatch::apply()   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 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\DependentBatchElement;
8
use FSi\Component\DataIndexer\DataIndexerInterface;
9
10
class MyDependentBatch extends DependentBatchElement
11
{
12
    public function getId(): string
13
    {
14
        return 'my_dependent_batch';
15
    }
16
17
    public function getParentId(): string
18
    {
19
    }
20
21
    public function getDataIndexer(): DataIndexerInterface
22
    {
23
    }
24
25
    public function apply($object): void
26
    {
27
    }
28
}
29