silverstripe-framework/dev/InstallerTest.php
Ingo Schommer 3334eafcb1 API Marked statics private, use Config API instead (#8317)
See "Static configuration properties are now immutable, you must use Config API." in the 3.1 change log for details.
2013-03-24 17:20:53 +01:00

18 lines
301 B
PHP

<?php
/**
* Simple controller that the installer uses to test that URL rewriting is working.
* @package framework
* @subpackage testing
*/
class InstallerTest extends Controller {
private static $allowed_actions = array(
'testrewrite'
);
public function testrewrite() {
echo "OK";
}
}