result = $result; $this->warmCache = $warmCache; $this->excep = $excep; $this->warnings = $warnings; } /** * @return bool */ public function getResult() : bool { return $this->result; } /** * @return bool */ public function getWarmCache() : bool { return $this->warmCache; } /** * @return AFPException|null */ public function getException() : ?AFPException { return $this->excep; } /** * @return UserVisibleWarning[] */ public function getWarnings() : array { return $this->warnings; } }