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

32 lines
704 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\Versioning\Versioned;
/**
* @property string $Title
* @method VersionedObject Parent()
* @method VersionedItem Child()
* @mixin Versioned
*/
class VersionedJoinObject extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_VersionedJoinObject';
2016-10-14 03:30:05 +02:00
private static $db = [
'Title' => 'Varchar'
];
2016-10-14 03:30:05 +02:00
private static $extensions = [
Versioned::class
];
2016-10-14 03:30:05 +02:00
private static $has_one = [
'Parent' => VersionedObject::class,
'Child' => VersionedItem::class,
];
2016-10-14 03:30:05 +02:00
}