'整数', self::STRING => '字符串', self::BOOLEAN => '布尔值', self::FLOAT => '浮点', ]; public function __construct( public array $request, public array $response ) { } /** * @param array $handler * @return array */ public function execute(mixed $class, mixed $method = null): array { // TODO: Implement execute() method. return [$this->request, $this->response]; } }