silverstripe-framework/tests/php/ORM/ManyManyThroughListTest/TestObject.php

31 lines
642 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
use SilverStripe\ORM\ManyManyThroughList;
/**
* Basic parent object
*
* @property string $Title
* @method ManyManyThroughList Items()
2016-10-14 03:30:05 +02:00
*/
class TestObject extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_Object';
2016-10-14 03:30:05 +02:00
private static $db = [
'Title' => 'Varchar'
];
2016-10-14 03:30:05 +02:00
private static $many_many = [
'Items' => [
'through' => JoinObject::class,
'from' => 'Parent',
'to' => 'Child',
]
];
2016-10-14 03:30:05 +02:00
}