mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
29 lines
626 B
PHP
29 lines
626 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
use SilverStripe\ORM\ManyManyThroughList;
|
||
|
|
||
|
/**
|
||
|
* @property string $Title
|
||
|
* @method ManyManyThroughList Items()
|
||
|
*/
|
||
|
class PolyObjectA extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $table_name = 'ManyManyThroughListTest_PolyObjectA';
|
||
|
|
||
|
private static $db = [
|
||
|
'Title' => 'Varchar'
|
||
|
];
|
||
|
|
||
|
private static $many_many = [
|
||
|
'Items' => [
|
||
|
'through' => PolyJoinObject::class,
|
||
|
'from' => 'Parent',
|
||
|
'to' => 'Child',
|
||
|
]
|
||
|
];
|
||
|
}
|