1 | <?php |
||
6 | class YearList extends AbstractList |
||
7 | { |
||
8 | /** |
||
9 | * @param null|int $start |
||
10 | * @param null|int $end |
||
11 | * @param int $step |
||
12 | * @return YearList|static |
||
13 | */ |
||
14 | public static function forge($start = null, $end = null, $step = 1) |
||
24 | |||
25 | /** |
||
26 | * uses Japanese Gen-Gou style year, like '平成21年'. |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function useJpnGenGou() |
||
34 | |||
35 | /** |
||
36 | * @return Closure |
||
37 | */ |
||
38 | public static function formatJpnGenGou() |
||
67 | |||
68 | } |