silverstripe-framework/tests/php/ORM/ManyManyThroughListTest/PolyObjectB.php
Damian Mooyman 257ff69e32 API Implement many_many through polymorphic (from only) (#7928)
* API Support many_many through polymorphic relations (from side only)
Fixes #7911
Fixes #3136

* Add extra docs and allow optional arguments

* ENHANCEMENT Enable quiet to be turned off

* BUG Fix issue with manymanythroughlist duplication
2018-03-22 10:26:25 +13:00

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 PolyObjectB extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_PolyObjectB';
private static $db = [
'Title' => 'Varchar'
];
private static $many_many = [
'Items' => [
'through' => PolyJoinObject::class,
'from' => 'Parent',
'to' => 'Child',
]
];
}