mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
14 lines
289 B
PHP
14 lines
289 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 $db = array(
|
||
|
'TestText' => 'Varchar'
|
||
|
);
|
||
|
}
|