Given one watched literal, this method returns the other watched literal
int $literal The watched literal that should not be returned:
int A literal
public function getOtherWatch(int $literal) : int { if ($this->watch1 === $literal) { return $this->watch2; } return $this->watch1; }