mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
16 lines
358 B
PHP
16 lines
358 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
|
|
|
|
/**
|
|
* Used to test inherited ambiguous relationships.
|
|
*/
|
|
class SearchUpdaterTest_ExtendedContainer extends SearchUpdaterTest_OtherContainer
|
|
{
|
|
private static $table_name = 'SearchUpdaterTest_ExtendedContainer';
|
|
|
|
private static $db = [
|
|
'SomeField' => 'Varchar',
|
|
];
|
|
}
|