for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\Dev;
use SilverStripe\Control\Controller;
/**
* Simple controller that the installer uses to test that URL rewriting is working.
*/
class InstallerTest extends Controller
{
private static $allowed_actions = array(
$allowed_actions
'testrewrite'
);
public function testrewrite()
echo "OK";
}