コード例 #1
0
ファイル: Size.php プロジェクト: pipecivil/ivory-google-map
 /**
  * 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;
 }