Moves a watch from one literal to another
int $from The previously watched literal:
int $to The literal to be watched now:
public function moveWatch(int $from, int $to) : void { if ($this->watch1 === $from) { $this->watch1 = $to; } else { $this->watch2 = $to; } }