Controller.class.php 167 B

12345678910
  1. <?php
  2. namespace Cas\Controller\CmdLine;
  3. class Controller extends \KIF\Core\Controller {
  4. public function run() {
  5. $action = $this->action;
  6. $this->$action();
  7. }
  8. }