| 1 | <?php |
||
| 2 | |||
| 3 | namespace Dynamic\Collection\Test\TestOnly; |
||
| 4 | |||
| 5 | use Dynamic\Collection\CollectionExtension; |
||
| 6 | use Dynamic\Collection\Test\TestOnly\TestCollectionObject; |
||
| 7 | use SilverStripe\Dev\TestOnly; |
||
| 8 | |||
| 9 | class TestCollectionController extends \PageController implements TestOnly |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private static $managed_object = TestCollectionObject::class; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 15 | |||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private static $extensions = [ |
||
|
0 ignored issues
–
show
|
|||
| 20 | CollectionExtension::class |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 |