Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
36 | public static function fromString(string $string): Metric |
||
37 | { |
||
38 | [$config, $tags, $measurements, $time] = explode('%', $string); |
||
39 | |||
40 | return new Metric(Config::fromString($config), Tags::fromString($tags), Measurements::fromString($measurements), (float) $time); |
||
41 | } |
||
63 |