silverstripe-framework/tests/php/ORM/RelatedDataServiceTest/ManyManyThrough.php

17 lines
373 B
PHP

<?php
namespace SilverStripe\ORM\Tests\RelatedDataServiceTest;
class ManyManyThrough extends Node
{
private static $table_name = 'TestOnly_RelatedDataServiceTest_ManyManyThrough';
private static $many_many = [
'Hubs' => [
'through' => ThroughObjectMMT::class,
'from' => 'MMTObj',
'to' => 'HubObj',
],
];
}