Index.php 143 B

12345678910
  1. <?php
  2. namespace Controller;
  3. class index extends \Qii\Controller\Base
  4. {
  5. public function indexAction()
  6. {
  7. echo __CLASS__;
  8. }
  9. }