mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
22 lines
494 B
PHP
22 lines
494 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
/**
|
|
* Used to test ambiguous relationships.
|
|
*/
|
|
class SearchUpdaterTest_OtherContainer extends DataObject
|
|
{
|
|
private static $table_name = 'SearchUpdaterTest_OtherContainer';
|
|
|
|
private static $has_many = [
|
|
'HasManyObjects' => SearchUpdaterTest_HasMany::class,
|
|
];
|
|
|
|
private static $many_many = [
|
|
'ManyManyObjects' => SearchUpdaterTest_ManyMany::class,
|
|
];
|
|
}
|