1 | <?php |
||
6 | class MonthList extends AbstractList |
||
7 | { |
||
8 | /** |
||
9 | * @param null|int $start |
||
10 | * @param null|int $end |
||
11 | * @param int $step |
||
12 | * @return MonthList|static |
||
13 | */ |
||
14 | public static function forge($start = 1, $end = 12, $step = 1) |
||
24 | |||
25 | /** |
||
26 | * uses full-text of month name, like 'January'. |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function useFullText() |
||
34 | |||
35 | /** |
||
36 | * @return Closure |
||
37 | */ |
||
38 | public static function formatFullText() |
||
58 | } |
||
59 |