You are here

final function DatexPartialImplementation::setTimestamp in Datex 7.3

Set timestamp on this object.

Overrides DatexInterface::setTimestamp

2 calls to DatexPartialImplementation::setTimestamp()
DatexIntlCalendar::parse in src/Datex/DatexIntlCalendar.php
Parses a date string into date and sets this objects date accordingly.
DatexPoorMansGregorianCalendar::parse in src/Datex/DatexPoorMansGregorianCalendar.php

File

src/Datex/DatexPartialImplementation.php, line 116
Base implementation of DatexInterface.

Class

DatexPartialImplementation
Base implementation of DatexInterface.

Code

final function setTimestamp($timestamp) {
  $this->origin
    ->setTimestamp($timestamp);
  return $this;
}