/**
  * Seat the first knight and allow the royal page to handle the rest.
  */
 private function seatVisitingKnights()
 {
     foreach ($this->knights as $knightName => $knight) {
         $table = new Table($this->guestList);
         $table->seatKnight($knight);
         $this->royalSeatingPage($table);
     }
 }