result = $result; return $this; } /** * @return string */ public function getCommand(): string { return $this->command; } /** * @param string $command * @return BashResult */ public function execute(string $command) { $this->command = $command; return $this->result; } }