mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
21 lines
518 B
PHP
21 lines
518 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\DataListTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class MixedHasManyEagerLoadObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'MixedHasManyEagerLoadObject';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar'
|
|
];
|
|
|
|
private static $has_one = [
|
|
'MixedManyManyEagerLoadObject' => MixedManyManyEagerLoadObject::class,
|
|
'MixedHasOneEagerLoadObject' => MixedHasOneEagerLoadObject::class
|
|
];
|
|
}
|