예제 #1
0
파일: Event.php 프로젝트: jbelborja/lavid3
 public function setFormats($day, $month, $year, $time)
 {
     if (isset($this->start)) {
         $this->start->setFormats($day, $month, $year, $time);
     }
     if (isset($this->end)) {
         $this->end->setFormats($day, $month, $year, $time);
     }
 }