command = $command;
}
/**
* @return string
*/
public function getCommand()
{
return $this->command;
}
/**
* @param int
*/
public function setExitCode($exitCode)
{
$this->exitCode = $exitCode;
}
/**
* @return int
*/
public function getExitCode()
{
return $this->exitCode;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ShellTask::class, 'Google_Service_Dataflow_ShellTask');