silverstripe-framework/tests/php/ORM/DataListTest/EagerLoading/EagerLoadObjectManyManyThroughEagerLoadObject.php

23 lines
611 B
PHP

<?php
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
use SilverStripe\ORM\DataObject;
use SilverStripe\Dev\TestOnly;
class EagerLoadObjectManyManyThroughEagerLoadObject extends DataObject implements TestOnly
{
private static $table_name = 'EagerLoadObjectManyManyThroughEagerLoadObject';
private static $db = [
'Title' => 'Varchar',
'SomeBool' => 'Boolean',
'SomeInt' => 'Int',
];
private static $has_one = [
'EagerLoadObject' => EagerLoadObject::class,
'ManyManyThroughEagerLoadObject' => ManyManyThroughEagerLoadObject::class
];
}