Example #1
0
 /**
  * Determine if the year in this date is a leap year
  *
  * Determine if the year in this date is a leap year
  *
  * @access public
  * @return boolean true if this year is a leap year
  */
 function isLeapYear()
 {
     return Calc::isLeapYear($this->year);
 }