Welcome.php 152 B

12345678910
  1. <?php
  2. class Controller_Welcome extends Controller {
  3. public function action_index()
  4. {
  5. $this->response->body('hello, world!');
  6. }
  7. } // End Welcome