IndexController.php 172 B

123456789
  1. <?php
  2. class IndexController extends \Phalcon\Mvc\Controller
  3. {
  4. public function indexAction()
  5. {
  6. echo "<h1>Wrong controller for this benchmark!</h1>";
  7. }
  8. }