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