silverstripe-framework/tests/php/ORM/DataListTest/EagerLoading/ManyManyThroughEagerLoadObjectManyManyThroughSubEagerLoadObject.php
2023-07-17 12:03:09 +12:00

21 lines
621 B
PHP

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