9 lines
214 B
PHP
9 lines
214 B
PHP
|
<?php defined('SYSPATH') or die('No direct script access.');
|
||
|
|
||
|
class Controller_Welcome extends Controller_Template {
|
||
|
|
||
|
public function action_index() {
|
||
|
$this->response->body('hello, world!');
|
||
|
}
|
||
|
} // End Welcome
|