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

28 lines
810 B
PHP
Raw Normal View History

2023-06-07 04:59:02 +02:00
<?php
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
2023-06-07 04:59:02 +02:00
use SilverStripe\ORM\DataObject;
use SilverStripe\Dev\TestOnly;
class ManyManyThroughSubEagerLoadObject extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughSubEagerLoadObject';
private static $db = [
'Title' => 'Varchar'
];
private static $many_many = [
'ManyManyThroughSubSubEagerLoadObjects' => [
'through' => ManyManyThroughSubEagerLoadObjectManyManyThroughSubSubEagerLoadObject::class,
'from' => 'ManyManyThroughSubEagerLoadObject',
'to' => 'ManyManyThroughSubSubEagerLoadObject',
]
];
private static $belongs_many_many = [
'ManyManyThroughEagerLoadObjects' => ManyManyThroughEagerLoadObject::class
];
}