| 1 | <?php | ||
| 18 | class DateType extends AbstractObject | ||
| 19 | { | ||
| 20 | /** | ||
| 21 | * @var DateTimeImmutable | ||
| 22 | */ | ||
| 23 | private $dateTime; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @param DateTimeImmutable $dateTime | ||
| 27 | */ | ||
| 28 | public function __construct(DateTimeImmutable $dateTime) | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @return DateTimeImmutable | ||
| 35 | */ | ||
| 36 | public function getDateTime() | ||
| 40 | |||
| 41 | /** | ||
| 42 |      * {@inheritdoc} | ||
| 43 | */ | ||
| 44 | public function writeToStream(SplFileObject $fileObject, $encryptionKey) | ||
| 50 | } | ||
| 51 |