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