| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | 4 | public function __construct( |
|
| 42 | $timestamp, |
||
| 43 | Samples $samples, |
||
| 44 | Transaction $transaction, |
||
| 45 | Span $span = null, |
||
| 46 | Tags $tags = null |
||
| 47 | ) { |
||
| 48 | 4 | $this->timestamp = (int) $timestamp; |
|
| 49 | 4 | $this->samples = $samples; |
|
| 50 | 4 | $this->transaction = $transaction; |
|
| 51 | 4 | $this->span = $span; |
|
| 52 | 4 | $this->tags = $tags; |
|
| 53 | 4 | } |
|
| 79 |