13 lines
245 B
PHP
Raw Permalink Normal View History

2020-10-29 09:29:26 +13:00
<?php
namespace SilverStripe\ORM\Tests\RelatedDataServiceTest;
class ManyMany extends Node
{
private static $table_name = 'TestOnly_RelatedDataServiceTest_ManyMany';
private static $many_many = [
'Hubs' => Hub::class
];
}