Пример #1
0
 /**
  * Place new battleship on the field
  * @param Placer $placer
  */
 public function addBattleship(Placer $placer)
 {
     if ($this->shots->count()) {
         throw new Exception\Exception("Can\\'t add placers. There are shoots!");
     }
     $this->placers[] = $placer;
 }