/home/smartonegroup/public_html/veroserv/vendor/spatie/ray/src/Payloads/MeasurePayload.php
<?php

namespace Spatie\Ray\Payloads;

use Symfony\Component\Stopwatch\StopwatchEvent;

class MeasurePayload extends Payload
{
    /** @var string */
    protected $name;

    /** @var bool */
    protected $isNewTimer = false;

    /** @var float|int */
    protected $totalTime = 0;

    /** @var int */
    protected $maxMemoryUsageDuringTotalTime = 0;

    /** @var float|int */
    protected $timeSinceLastCall = 0;

    /** @var int */
    protected $maxMemoryUsageSinceLastCall = 0;

    public function __construct(string $name, StopwatchEvent $stopwatchEvent)
    {
        $this->name = $name;

        $this->totalTime = $stopwatchEvent->getDuration();
        $this->maxMemoryUsageDuringTotalTime = $stopwatchEvent->getMemory();

        $periods = $stopwatchEvent->getPeriods();

        if ($lastPeriod = end($periods)) {
            $this->timeSinceLastCall = $lastPeriod->getDuration() ;
            $this->maxMemoryUsageSinceLastCall = $lastPeriod->getMemory();
        }
    }

    public function concernsNewTimer(): self
    {
        $this->isNewTimer = true;
        $this->totalTime = 0;
        $this->maxMemoryUsageDuringTotalTime = 0;
        $this->timeSinceLastCall = 0;
        $this->maxMemoryUsageSinceLastCall = 0;

        return $this;
    }

    public function getType(): string
    {
        return 'measure';
    }

    public function getContent(): array
    {
        return [
            'name' => $this->name,
            'is_new_timer' => $this->isNewTimer,

            'total_time' => $this->totalTime,
            'max_memory_usage_during_total_time' => $this->maxMemoryUsageDuringTotalTime,

            'time_since_last_call' => $this->timeSinceLastCall,
            'max_memory_usage_since_last_call' => $this->maxMemoryUsageSinceLastCall,
        ];
    }
}