Elgg\Timer::begin PHP Метод

begin() публичный Метод

Record the start time of a period
public begin ( array $keys ) : void
$keys array Keys to identify period. E.g. ['startup', __FUNCTION__]
Результат void
    public function begin(array $keys)
    {
        $this->getTreeNode($keys)[self::MARKER_BEGIN] = microtime();
    }