getAttribute(Dispatched::class)->handler->callback ?? []; $controller = str_replace(self::$prefix.$project . '\\', '', $action[0] ?? ''); $controller = str_replace('\\', '/', $controller); if (!empty($action[1])) { $this->actions['controller'] = $controller ?? 'CommonController'; $this->actions['action'] = $action[1]; } else { $this->actions['controller'] = 'CommonController'; $this->actions['action'] = 'common'; } return $this->actions; } public function get() { return $this->actions; } }