DefaultController.php 116 B

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