Returns the expiration time value at the top of the heap.
Time complexity: O(1).
float|null Expiration time of the callback at the top of the heap or null if the heap is empty.
public function peek() : ?float { return isset($this->callbacks[0]) ? $this->callbacks[0]->expiration : null; }