13 lines
229 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Core\Tests\ClassInfoTest;
class WithRelation extends NoFields
{
private static $table_name = 'ClassInfoTest_WithRelation';
private static $has_one = array(
'Relation' => HasFields::class
);
}