mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19 lines
398 B
PHP
19 lines
398 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\HierarchyTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\Hierarchy\Hierarchy;
|
|
|
|
/**
|
|
* @mixin Hierarchy
|
|
*/
|
|
class HierarchyOnSubclassTestSubObject extends HierarchyOnSubclassTestObject implements TestOnly
|
|
{
|
|
private static $table_name = 'HierarchyOnSubclassTest_SubObject';
|
|
|
|
private static $extensions = [
|
|
Hierarchy::class,
|
|
];
|
|
}
|