You are here

final function DatexPartialImplementation::setTime in Datex 7.3

Set time on this object.

Overrides DatexInterface::setTime

1 call to DatexPartialImplementation::setTime()
DatexPoorMansJaliliCalendar::parse in src/Datex/DatexPoorMansJaliliCalendar.php
Is supposed to parse a date string into date value.

File

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

Class

DatexPartialImplementation
Base implementation of DatexInterface.

Code

final function setTime($hour, $minute, $second) {
  $this->origin
    ->setTime($hour, $minute, $second);
  return $this;
}