mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
16 lines
354 B
PHP
16 lines
354 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\BatchedProcessorTest;
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class BatchedProcessorTest_Object extends SiteTree implements TestOnly
|
|
{
|
|
private static $table_name = 'BatchedProcessorTest_Object';
|
|
|
|
private static $db = array(
|
|
'TestText' => 'Varchar'
|
|
);
|
|
}
|