player = $player; $this->from = $from; $this->to = $to; } /** * @return Location */ public function getFrom() : Location{ return $this->from; } /** * @return Location */ public function getTo() : Location{ return $this->to; } /** * @param Location $to */ public function setTo(Location $to) : void{ $this->to = $to; } }