silverstripe-framework/tests/core/manifest/ConfigStaticManifestTest/ConfigStaticManifestTestMyObject.php

11 lines
180 B
PHP
Raw Normal View History

<?php
use SilverStripe\Dev\TestOnly;
class ConfigStaticManifestTestMyObject implements TestOnly {
static private $db = [
'Name' => 'Varchar',
'Description' => 'Text',
];
}