SearchUpdaterTest_ExtendedContainer
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
c 0
b 0
f 0
wmc 0
1
<?php
2
3
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
4
5
/**
6
 * Used to test inherited ambiguous relationships.
7
 */
8
class SearchUpdaterTest_ExtendedContainer extends SearchUpdaterTest_OtherContainer
9
{
10
    private static $table_name = 'SearchUpdaterTest_ExtendedContainer';
0 ignored issues
show
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
11
12
    private static $db = [
0 ignored issues
show
introduced by
The private property $db is not used, and could be removed.
Loading history...
13
        'SomeField' => 'Varchar',
14
    ];
15
}
16