IndexController.php 194 B

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