Passed
Pull Request — master (#17)
by Gordon
02:56
created

BulkIndexer::indexDataObjects()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
1
<?php declare(strict_types = 1);
2
3
/**
4
 * Created by PhpStorm.
5
 * User: gordon
6
 * Date: 24/3/2561
7
 * Time: 20:36 น.
8
 */
9
10
namespace Suilven\FreeTextSearch\Tests\Mock;
11
12
use SilverStripe\ORM\DataObject;
13
14
// @phpcs:disable SlevomatCodingStandard.Functions.UnusedParameter.UnusedParameter
15
class BulkIndexer implements \Suilven\FreeTextSearch\Interfaces\BulkIndexer
16
{
17
18
    public function addDataObject(DataObject $dataObject): void
19
    {
20
        // TODO: Implement addDataObject() method.
21
    }
22
23
24
    public function indexDataObjects(): void
25
    {
26
        // TODO: Implement indexDataObjects() method.
27
    }
28
29
30
    public function setIndex(string $newIndex): void
31
    {
32
        // TODO: Implement setIndex() method.
33
    }
34
}
35