silverstripe-framework/tests/i18n/i18nTextCollectorTestMySubObject.php
Fred Condo d370423825 Clean up trailing ?> per coding standard
All sapphire but the lang directory
2012-02-12 12:40:16 -08:00

19 lines
359 B
PHP

<?php
/**
* @package sapphire
* @subpackage tests
*/
class i18nTextCollectorTestMySubObject extends i18nTextCollectorTestMyObject implements TestOnly {
static $db = array(
'SubProperty' => 'Varchar',
);
static $has_many = array(
'SubRelation' => 'Group'
);
static $singular_name = "My Sub Object";
static $plural_name = "My Sub Objects";
}