DefaultController.php 135 B

123456789
  1. <?php echo "<?php\n"; ?>
  2. class DefaultController extends Controller
  3. {
  4. public function actionIndex()
  5. {
  6. $this->render('index');
  7. }
  8. }