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
introduced
by
![]() |
|||
13 | |||
14 | private static $has_many = [ |
||
0 ignored issues
–
show
|
|||
15 | 'HasManyObjects' => SearchUpdaterTest_HasMany::class, |
||
16 | ]; |
||
17 | |||
18 | private static $many_many = [ |
||
0 ignored issues
–
show
|
|||
19 | 'ManyManyObjects' => SearchUpdaterTest_ManyMany::class, |
||
20 | ]; |
||
21 | } |
||
22 |