IndexAction.class.php 110 B

123456789101112131415
  1. <?php
  2. class IndexAction extends Action {
  3. public function index( ){
  4. echo 'hello world';
  5. }
  6. }