public function __construct() { parent::__construct(true); $this->add('/about', 'Index::about'); $this->addGet('/about1', 'Index::about'); $this->addGet('/about2', [IndexController::class, 'about']); $this->addGet('/about3', ['controller' => IndexController::class, 'action' => 'about']); }
public function __construct() { parent::__construct(true); }
public function __construct() { parent::__construct(true); $this->addGet('/time/current', [TimeController::class, 'current']); }