SearchUpdaterTest_ManyMany
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 12
wmc 0
1
<?php
2
3
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
4
5
use SilverStripe\ORM\DataObject;
6
7
class SearchUpdaterTest_ManyMany extends DataObject
8
{
9
    private static $db = array(
0 ignored issues
show
introduced by
The private property $db is not used, and could be removed.
Loading history...
10
        'Field1' => 'Varchar',
11
        'Field2' => 'Varchar'
12
    );
13
14
    private static $table_name = 'SearchUpdaterTest_ManyMany';
0 ignored issues
show
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
15
16
    private static $belongs_many_many = array(
0 ignored issues
show
introduced by
The private property $belongs_many_many is not used, and could be removed.
Loading history...
17
        'ManyManyContainer' => SearchUpdaterTest_Container::class,
18
        'ManyManyOtherContainer' => SearchUpdaterTest_OtherContainer::class,
19
    );
20
}
21