exitCode = $exitCode; } /** * Gets the exit code. * * @return integer * * @since 2.0.0 */ public function getExitCode(): int { return $this->exitCode; } /** * Sets the exit code. * * @param integer $exitCode The command exit code. * * @return void * * @since 2.0.0 */ public function setExitCode(int $exitCode): void { $this->exitCode = $exitCode; } }