| 1 | <?php | ||
| 7 | class Query | ||
| 8 | { | ||
| 9 | /** @var string */ | ||
| 10 | protected $sql; | ||
| 11 | |||
| 12 | /** @var float */ | ||
| 13 | protected $time; | ||
| 14 | |||
| 15 | /** @var string */ | ||
| 16 | protected $connectionName; | ||
| 17 | |||
| 18 | /** @var null|array */ | ||
| 19 | protected $bindings; | ||
| 20 | |||
| 21 | /** @var float */ | ||
| 22 | protected $microtime; | ||
| 23 | |||
| 24 | public static function fromQueryExecutedEvent(QueryExecuted $queryExecuted, bool $reportBindings = false) | ||
| 33 | |||
| 34 | protected function __construct( | ||
| 47 | |||
| 48 | public function toArray(): array | ||
| 58 | } | ||
| 59 |