21 lines
419 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 $url_segment = 'ContainerController';
2016-10-14 14:30:05 +13:00
private static $allowed_actions = array(
'subcontroller',
);
2016-10-14 14:30:05 +13:00
public function subcontroller()
{
return new SubController();
}
2016-10-14 14:30:05 +13:00
}