silverstripe-fulltextsearch/tests/BatchedProcessorTest/BatchedProcessorTest_Object...

16 lines
354 B
PHP
Raw Permalink Normal View History

2017-04-21 02:23:27 +02:00
<?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';
2017-04-21 02:23:27 +02:00
private static $db = array(
'TestText' => 'Varchar'
);
}