silverstripe-framework/src/Dev/InstallerTest.php

23 lines
422 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Dev;
use SilverStripe\Control\Controller;
/**
* Simple controller that the installer uses to test that URL rewriting is working.
* @deprecated 4.4.7 This class will be removed in Silverstripe Framework 5.
*/
2016-11-29 00:31:16 +01:00
class InstallerTest extends Controller
{
2014-08-15 08:53:05 +02:00
private static $allowed_actions = [
2016-11-29 00:31:16 +01:00
'testrewrite'
];
2016-11-29 00:31:16 +01:00
public function testrewrite()
{
echo "OK";
}
}