resultType = $resultType; $this->result = $result; return $this; } /** * Returns the result type of the Result. * * @return string */ public function getResultType (): string { return $this->resultType; } /** * Returns the result array of the Result. * * @return array */ public function getResult (): array { return $this->result; } }