mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
306 B
PHP
14 lines
306 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\ORM\Tests\RelatedDataServiceTest;
|
||
|
|
||
|
class ThroughObjectMMT extends Node
|
||
|
{
|
||
|
private static $table_name = 'TestOnly_RelatedDataServiceTest_ThroughObjectMMT';
|
||
|
|
||
|
private static $has_one = [
|
||
|
'HubObj' => Hub::class,
|
||
|
'MMTObj' => ManyManyThrough::class,
|
||
|
];
|
||
|
}
|