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

23 lines
611 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 EagerLoadObjectManyManyThroughEagerLoadObject extends DataObject implements TestOnly
{
private static $table_name = 'EagerLoadObjectManyManyThroughEagerLoadObject';
private static $db = [
'Title' => 'Varchar',
'SomeBool' => 'Boolean',
'SomeInt' => 'Int',
2023-06-07 04:59:02 +02:00
];
private static $has_one = [
'EagerLoadObject' => EagerLoadObject::class,
'ManyManyThroughEagerLoadObject' => ManyManyThroughEagerLoadObject::class
];
}