exitCode = $exitCode; $this->stdout = $stdout; } /** * Returns exit code of the process * * @return int */ public function getExitCode() { return $this->exitCode; } /** * Returns stdout of the process * * @return string */ public function getStdout() { return $this->stdout; } }