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

26 lines
607 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;
/**
* @property string $Title
* @method ManyManyThroughList Objects()
*/
class Item extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_Item';
2016-10-14 03:30:05 +02:00
private static $db = [
'Title' => 'Varchar'
];
2016-10-14 03:30:05 +02:00
private static $belongs_many_many = [
// Intentionally omit parent `.Items` specifier to ensure it's not mandatory
'Objects' => TestObject::class,
];
2016-10-14 03:30:05 +02:00
}