21 lines
336 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class ContainerController extends Controller implements TestOnly
{
private static $allowed_actions = array(
'subcontroller',
);
public function subcontroller()
{
return new SubController();
}
}