| 1 | <?php |
||
| 6 | class ExecuteQuery implements EventInterface |
||
| 7 | { |
||
| 8 | /** @var string */ |
||
| 9 | protected $sql; |
||
| 10 | |||
| 11 | /** @var array */ |
||
| 12 | protected $bindings = []; |
||
| 13 | |||
| 14 | 18 | public function __construct(string $sql, array $bindings = []) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getSql(): string |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | public function getBindings(): array |
||
| 35 | } |
||
| 36 |