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