%PDF- %PDF-
Direktori : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/ |
Current File : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Controller.php |
<?php namespace ACP; use AC\Request; use ACP\Exception\ControllerException; abstract class Controller { /** * @var Request */ protected $request; public function __construct( Request $request ) { $this->request = $request; } /** * @param string $action */ public function dispatch( $action ) { $method = $action . '_action'; if ( ! is_callable( [ $this, $method ] ) ) { throw ControllerException::from_invalid_action( $action ); } $this->$method(); } }