| 1 | <?php |
||
| 13 | class Sqlite3PreparedStatement implements PreparedStatementInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var \SQLite3Stmt |
||
| 17 | */ |
||
| 18 | protected $statement; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Sqlite3PreparedStatement constructor. |
||
| 22 | * |
||
| 23 | * @param \SQLite3Stmt $statement |
||
| 24 | */ |
||
| 25 | public function __construct(\SQLite3Stmt $statement) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return \SQLite3Stmt |
||
| 32 | */ |
||
| 33 | protected function getStatement() : \SQLite3Stmt |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param \SQLite3Stmt $statement |
||
| 40 | */ |
||
| 41 | protected function setStatement(\SQLite3Stmt $statement) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param array $params |
||
| 48 | * |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function execute(array $params = []) : array |
||
| 66 | } |
||
| 67 |