| 1 | <?php |
||
| 12 | final class DatePicker implements DatePickerInterface |
||
| 13 | { |
||
| 14 | use Debugger; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var DatePickerInterface |
||
| 18 | */ |
||
| 19 | private $datePicker; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function __construct(RawTqContext $context, $selector, $date) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function setDate() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | public function isDateSelected() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | */ |
||
| 59 | public function isDateAvailable() |
||
| 63 | } |
||
| 64 |