| 1 | <?php |
||
| 5 | class Season |
||
| 6 | { |
||
| 7 | const WINTER = 'winter'; |
||
| 8 | const SPRING = 'spring'; |
||
| 9 | const SUMMER = 'summer'; |
||
| 10 | const FALL = 'fall'; |
||
| 11 | |||
| 12 | public static function getCurrentSeason() |
||
| 26 | |||
| 27 | public static function getCurrentSeasonRange() |
||
| 45 | |||
| 46 | public static function getWinterSeason() |
||
| 50 | |||
| 51 | public static function getSpringSeason() |
||
| 55 | |||
| 56 | public static function getSummerSeason() |
||
| 60 | |||
| 61 | public static function getFallSeason() |
||
| 65 | } |
||
| 66 |