1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00
2023-07-17 12:03:09 +12:00

21 lines
489 B
PHP

<?php
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
use SilverStripe\ORM\DataObject;
use SilverStripe\Dev\TestOnly;
class MixedHasOneEagerLoadObject extends DataObject implements TestOnly
{
private static $table_name = 'MixedHasOneEagerLoadObject';
private static $db = [
'Title' => 'Varchar'
];
private static $has_one = [
// this is used for a "four levels deep" test
'FourthLevel' => MixedHasOneEagerLoadObject::class
];
}