silverstripe-framework/tests/model/DataObjectTest_Namespaced.php

14 lines
342 B
PHP
Raw Normal View History

<?php
namespace DataObjectTest;
/**
* Right now this is only used in DataListTest, but extending it to DataObjectTest in the future would make sense.
* Note that it was deliberated named to include "\N" to try and trip bad code up.
*/
class NamespacedClass extends \DataObject {
private static $db = array(
'Name' => 'Varchar',
);
}