public Timer\Manager::getHistory
Description
php
public Timer\Manager->getHistory ( ): arrayReturns the chronological history of all timed operations for this election. Entries are recorded in completion order (inner/nested operations appear before their outer container). Nested chronos will naturally overlap in time-range.
Return value
(array) Each entry describes one timed operation:
role— human-readable label of the operation, or null if unnamedprocess_in— duration in seconds (float) of this specific operationtimer_start— Unix timestamp (microtime) when the operation startedtimer_end— Unix timestamp (microtime) when the operation ended
