Issues (186)

SearchUpdaterTest/SearchUpdaterTest_Container.php (5 issues)

Severity
1
<?php
2
3
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
4
5
use SilverStripe\ORM\DataObject;
6
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_HasOne;
7
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_HasMany;
8
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_ManyMany;
9
10
class SearchUpdaterTest_Container extends DataObject
11
{
12
    private static $db = array(
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
13
        'Field1' => 'Varchar',
14
        'Field2' => 'Varchar',
15
        'MyDate' => 'Date',
16
    );
17
18
    private static $table_name = 'SearchUpdaterTest_Container';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
19
20
    private static $has_one = array(
0 ignored issues
show
The private property $has_one is not used, and could be removed.
Loading history...
21
        'HasOneObject' => SearchUpdaterTest_HasOne::class
22
    );
23
24
    private static $has_many = array(
0 ignored issues
show
The private property $has_many is not used, and could be removed.
Loading history...
25
        'HasManyObjects' => SearchUpdaterTest_HasMany::class
26
    );
27
28
    private static $many_many = array(
0 ignored issues
show
The private property $many_many is not used, and could be removed.
Loading history...
29
        'ManyManyObjects' => SearchUpdaterTest_ManyMany::class
30
    );
31
}
32