12 lines
125 B
PHP
12 lines
125 B
PHP
|
<?php
|
||
|
|
||
|
class TestController extends AppController {
|
||
|
|
||
|
function index() {
|
||
|
return "<h1>OMG TEST</h1>";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|