silverstripe-framework/tests/php/Core/ClassInfoTest/WithRelation.php

13 lines
244 B
PHP
Raw Normal View History

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