Action.php 297 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Action
  4. */
  5. namespace Qii\Base;
  6. class Action extends Controller
  7. {
  8. public $controllerId;
  9. public $actionId;
  10. public $response;
  11. public function __call($method, $args)
  12. {
  13. return call_user_func_array(array($this->controller, $method), $args);
  14. }
  15. }