silverstripe-framework/tests/php/ORM/ManyManyThroughListTest/VersionedItem.php
2016-12-19 16:08:19 +13:00

31 lines
727 B
PHP

<?php
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
use SilverStripe\ORM\ManyManyThroughList;
use SilverStripe\ORM\Versioning\Versioned;
/**
* @property string $Title
* @method ManyManyThroughList Objects()
* @mixin Versioned
*/
class VersionedItem extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_VersionedItem';
private static $db = [
'Title' => 'Varchar'
];
private static $extensions = [
Versioned::class
];
private static $belongs_many_many = [
'Objects' => 'SilverStripe\\ORM\\Tests\\ManyManyThroughListTest\\VersionedObject.Items'
];
}