mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
16 lines
331 B
PHP
16 lines
331 B
PHP
<?php
|
|
|
|
namespace SilverStripe\MultiForm\Tests;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class MultiFormObjectDecoratorDataObject extends DataObject implements TestOnly
|
|
{
|
|
private static $db = [
|
|
'Name' => 'Varchar'
|
|
];
|
|
|
|
private static $table_name = 'MultiFormObjectDecoratorDataObject';
|
|
}
|