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