message = $message; // Ensure the exit code is non-zero. The exit code may have // come from an exception, and those often default to zero if // a specific value is not provided. $this->exitCode = $exitCode == 0 ? 1 : $exitCode; } public function getExitCode() { return $this->exitCode; } public function getOutputData() { return $this->message; } }