mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
16 lines
342 B
PHP
16 lines
342 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
class PolymorphM2MChild extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $table_name = 'TestOnly_PolymorphM2MChild';
|
||
|
|
||
|
private static $has_many = [
|
||
|
'Parents' => PolymorphM2MMapper::class
|
||
|
];
|
||
|
}
|