| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 7 | class Builder |
||
| 8 | { |
||
| 9 | private $spanContext; |
||
| 10 | |||
| 11 | 1 | public static function create() |
|
| 12 | { |
||
| 13 | 1 | return new self(); |
|
| 14 | } |
||
| 15 | |||
| 16 | 1 | public function setSpanContext(SpanContext $spanContext): self |
|
| 17 | { |
||
| 18 | 1 | $this->spanContext = $spanContext; |
|
| 19 | 1 | return $this; |
|
| 20 | } |
||
| 21 | |||
| 22 | 1 | public function getTracer() |
|
| 25 | } |
||
| 26 | } |
||
| 27 |