Passed
Push — master ( b4e3f0...d6a119 )
by Robbie
04:16 queued 02:31
created

SearchUpdaterTest/SearchUpdaterTest_ManyMany.php (3 issues)

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
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
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
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