You are here

final function DatexPartialImplementation::setTime in Datex 8

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 106

Class

DatexPartialImplementation

Namespace

Drupal\datex\Datex

Code

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