예제 #1
0
파일: Helpers.php 프로젝트: uruba/financalc
 /**
  * @param $checkedVariable
  * @return bool
  */
 public static function checkIfNotNegativeNumberOrThrowAnException($checkedVariable)
 {
     if (Helpers::checkIfNotNegativeNumber($checkedVariable)) {
         return true;
     }
     throw new InvalidArgumentException(ErrorMessages::getMustNotBeNegativeNumberMessage($checkedVariable));
 }