Issues (186)

SearchUpdaterTest_OtherContainer.php (3 issues)

Severity
1
<?php
2
3
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
4
5
use SilverStripe\ORM\DataObject;
6
7
/**
8
 * Used to test ambiguous relationships.
9
 */
10
class SearchUpdaterTest_OtherContainer extends DataObject
11
{
12
    private static $table_name = 'SearchUpdaterTest_OtherContainer';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
13
14
    private static $has_many = [
0 ignored issues
show
The private property $has_many is not used, and could be removed.
Loading history...
15
        'HasManyObjects' => SearchUpdaterTest_HasMany::class,
16
    ];
17
18
    private static $many_many = [
0 ignored issues
show
The private property $many_many is not used, and could be removed.
Loading history...
19
        'ManyManyObjects' => SearchUpdaterTest_ManyMany::class,
20
    ];
21
}
22