2013-05-05 12:19:31 +12:00
|
|
|
<?php
|
|
|
|
|
2016-08-19 10:51:35 +12:00
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
2013-05-05 12:19:31 +12:00
|
|
|
class ConfigStaticManifestTestMyObject implements TestOnly {
|
|
|
|
static private $db = [
|
|
|
|
'Name' => 'Varchar',
|
|
|
|
'Description' => 'Text',
|
|
|
|
];
|
|
|
|
}
|