for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\CMS\Tests\Controllers;
use SilverStripe\CMS\Controllers\ContentController;
use SilverStripe\Dev\TestOnly;
class ContentControllerTest_PageController extends ContentController implements TestOnly
{
private static $allowed_actions = [
$allowed_actions
'second_index',
];
public function index()
return $this->Title;
}
public function second_index()
return $this->index();