silverstripe-framework/tests/i18n/i18nTextCollectorTestMyObject.php
Ingo Schommer 3334eafcb1 API Marked statics private, use Config API instead (#8317)
See "Static configuration properties are now immutable, you must use Config API." in the 3.1 change log for details.
2013-03-24 17:20:53 +01:00

20 lines
389 B
PHP

<?php
/**
* @package framework
* @subpackage tests
*/
class i18nTextCollectorTestMyObject extends DataObject implements TestOnly {
private static $db = array(
'FirstProperty' => 'Varchar',
'SecondProperty' => 'Int'
);
private static $has_many = array(
'Relation' => 'Group'
);
private static $singular_name = "My Object";
private static $plural_name = "My Objects";
}