You are here

final function CalendarSystemsPartialImplementation::setTime in Calendar Systems 8.3

Overrides CalendarSystemsInterface::setTime

1 call to CalendarSystemsPartialImplementation::setTime()
CalendarSystemsPoorMansJaliliCalendar::parse in src/CalendarSystems/CalendarSystemsPoorMansJaliliCalendar.php
Is supposed to parse a date string into date value.

File

src/CalendarSystems/CalendarSystemsPartialImplementation.php, line 102

Class

CalendarSystemsPartialImplementation

Namespace

Drupal\calendar_systems\CalendarSystems

Code

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