Issues (186)

SearchUpdaterTest_ExtendedContainer.php (2 issues)

Severity
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
The private property $table_name is not used, and could be removed.
Loading history...
11
12
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
13
        'SomeField' => 'Varchar',
14
    ];
15
}
16