[ * 'target' => '1:/some/folder/' * 'data' => '1' * ] * ``` * * @return array> */ public function getCommand(): array { return $this->command; } /** * @return mixed The result - Depending on the performed action, * this could e.g. be a File or just a boolean. */ public function getResult(): mixed { return $this->result; } /** * @return string The current conflict mode * @see DuplicationBehavior */ public function getConflictMode(): string { return $this->conflictMode; } }