123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- interface Notable {
-
- public function setCalendarTimeAndDuration($hour = null, $minute = null, $second = null,
- $day = null, $month = null, $year = null, $duration = null);
-
- public function getCalendarStartTime();
-
- public function getCalendarEndTime();
- }
|