mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
316 B
PHP
14 lines
316 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\RelatedDataServiceTest;
|
|
|
|
// No belong_many_many on RelatedDataServiceTest_Hub
|
|
class ManyManyNoBelongs extends Node
|
|
{
|
|
private static $table_name = 'TestOnly_RelatedDataServiceTest_ManyManyNoBelongs';
|
|
|
|
private static $many_many = [
|
|
'Hubs' => Hub::class
|
|
];
|
|
}
|