silverstripe-cms/tests/php/Controllers/ContentControllerTestPageController.php

20 lines
362 B
PHP
Raw Normal View History

<?php
2017-08-09 04:53:38 +02:00
namespace SilverStripe\CMS\Tests\Controllers;
2017-08-09 03:25:12 +02:00
use SilverStripe\Dev\TestOnly;
2017-08-09 03:25:12 +02:00
use PageController;
class ContentControllerTestPageController extends PageController implements TestOnly
{
private static $allowed_actions = [
'test',
'testwithouttemplate'
];
public function testwithouttemplate()
{
return [];
}
}