Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 58 | public function __construct( |
|
18 | EventInfo $eventInfo, |
||
19 | string $database, |
||
20 | int $executionTime, |
||
21 | string $query, |
||
22 | int $threadId = 0 |
||
23 | ) { |
||
24 | 58 | parent::__construct($eventInfo); |
|
25 | |||
26 | 58 | $this->executionTime = $executionTime; |
|
27 | 58 | $this->query = $query; |
|
28 | 58 | $this->database = $database; |
|
29 | 58 | $this->threadId = $threadId; |
|
30 | } |
||
75 |