| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function __construct( |
||
| 35 | string $sql, |
||
| 36 | float $time, |
||
| 37 | string $connectionName, |
||
| 38 | ?array $bindings = null, |
||
| 39 | ?float $microtime = null |
||
| 40 | ) { |
||
| 41 | $this->sql = $sql; |
||
| 42 | $this->time = $time; |
||
| 43 | $this->connectionName = $connectionName; |
||
| 44 | $this->bindings = $bindings; |
||
| 45 | $this->microtime = $microtime ?? microtime(true); |
||
| 46 | } |
||
| 47 | |||
| 59 |