silverstripe-framework/tests/php/Core/ClassInfoTest/WithRelation.php
2016-11-23 19:25:12 +13:00

17 lines
280 B
PHP

<?php
namespace SilverStripe\Core\Tests\ClassInfoTest;
/**
* @package framework
* @subpackage tests
*/
class WithRelation extends NoFields
{
private static $table_name = 'ClassInfoTest_WithRelation';
private static $has_one = array(
'Relation' => HasFields::class
);
}