1
0
mirror of https://github.com/silverstripe/silverstripe-fulltextsearch synced 2024-10-22 12:05:29 +00:00

16 lines
354 B
PHP
Raw Normal View History

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