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

20 lines
495 B
PHP

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