Total Complexity | 1 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class ProxyMethodCallEvent |
||
8 | { |
||
9 | public string $service; |
||
10 | |||
11 | public string $class; |
||
12 | |||
13 | public string $methodName; |
||
14 | |||
15 | public ?array $arguments; |
||
16 | |||
17 | public $result; |
||
18 | |||
19 | public string $status; |
||
20 | |||
21 | public ?object $error; |
||
22 | |||
23 | public float $timeStart; |
||
24 | |||
25 | public float $timeEnd; |
||
26 | |||
27 | 4 | public function __construct( |
|
49 |