1 | <?php |
||
2 | |||
3 | namespace SilverStripe\Dev; |
||
4 | |||
5 | use SilverStripe\Control\Controller; |
||
6 | |||
7 | /** |
||
8 | * Simple controller that the installer uses to test that URL rewriting is working. |
||
9 | */ |
||
10 | class InstallerTest extends Controller |
||
11 | { |
||
12 | |||
13 | private static $allowed_actions = array( |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
14 | 'testrewrite' |
||
15 | ); |
||
16 | |||
17 | public function testrewrite() |
||
18 | { |
||
19 | echo "OK"; |
||
20 | } |
||
21 | } |
||
22 |