Пример #1
0
 /**
  * Sets the height size.
  *
  * @param double $height The height size.
  *
  * @throws \Ivory\GoogleMap\Exception\BaseException If the height is not valid.
  */
 public function setHeight($height)
 {
     if (!is_numeric($height)) {
         throw BaseException::invalidSizeHeight();
     }
     $this->height = $height;
 }