mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e55be50783
Fixes #2126
11 lines
169 B
PHP
11 lines
169 B
PHP
<?php
|
|
|
|
namespace config\staticmanifest;
|
|
|
|
class NamespaceTest implements \TestOnly {
|
|
static private $db = array(
|
|
'Name' => 'Varchar',
|
|
'Description' => 'Text',
|
|
);
|
|
}
|