summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/Aggregation/SumSummary.php
blob: 9b257193c4de10a1529285160528dc3d2db403f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\Aggregation;

final class SumSummary
{
    /**
     * @var float|int
     */
    public $value;
    /**
     * @param float|int $value
     */
    public function __construct($value)
    {
        $this->value = $value;
    }
}