Kurt\Google\Analytics\Traits\Handlers\MetricsHandler::mergeMetrics PHP Метод

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

Convert $newMetrics to array if string given and pass the array to a helper function.
public mergeMetrics ( string | array $newMetrics )
$newMetrics string | array
    public function mergeMetrics($newMetrics)
    {
        $newMetrics = $this->convertToArrayIfString($newMetrics);
        $this->metrics = $this->mergeNewMetricsToCurrentOnes($newMetrics);
    }