mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
17 lines
373 B
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',
|
|
],
|
|
];
|
|
}
|