Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function __construct(string $message, string $path, float $duration = 0, iterable $context = []) |
||
37 | { |
||
38 | $this->message = $message; |
||
39 | $this->path = $path; |
||
40 | $this->duration = $duration; |
||
41 | $this->label = Trackable::LABEL_PAGE_VIEW; |
||
42 | $this->context = array_merge($context, [ |
||
|
|||
43 | 'label' => $this->label, |
||
44 | 'path' => $path, |
||
45 | 'duration' => $duration |
||
46 | ]); |
||
69 |