1 | <?php |
||
11 | class InnerChronoIterator extends ChronoIterator |
||
12 | { |
||
13 | /** |
||
14 | * @var Shifter |
||
15 | */ |
||
16 | private $outerShifter; |
||
17 | |||
18 | /** |
||
19 | * @param Shifter $innerShifter |
||
20 | * @param Shifter $outerShifter |
||
21 | * @param string $date |
||
22 | */ |
||
23 | 2 | public function __construct(Shifter $innerShifter, Shifter $outerShifter, $date) |
|
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | 2 | public function current() |
|
36 | } |
||
37 |