예제 #1
0
파일: Grade.php 프로젝트: ghiobi/AnotherOne
 public function passed($passing_grade)
 {
     if (!SELF::validate($passing_grade)) {
         throw new Exception('Invalid Grade');
     }
     if (!$this->grade) {
         return TRUE;
     }
     if (SELF::$marks[$this->grade] <= SELF::$marks[$passing_grade]) {
         return TRUE;
     }
     return FALSE;
 }