| 1 | <?php |
||
| 9 | class InnerShifter |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Shifter |
||
| 13 | */ |
||
| 14 | private $innerShifter; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param Shifter $shifter |
||
| 18 | */ |
||
| 19 | 5 | public function __construct(Shifter $shifter) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $date |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 1 | public function shift($date) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return Shifter |
||
| 35 | */ |
||
| 36 | 4 | public function getInnerShifter() |
|
| 40 | } |
||
| 41 |