| Total Complexity | 7 |
| Total Lines | 55 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Connection extends AbstractConnection |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritDoc |
||
| 12 | */ |
||
| 13 | public function serverInfo() |
||
| 14 | { |
||
| 15 | // TODO: Implement serverInfo() method. |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritDoc |
||
| 20 | */ |
||
| 21 | public function open(string $database, string $schema = '') |
||
| 22 | { |
||
| 23 | // TODO: Implement open() method. |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritDoc |
||
| 28 | */ |
||
| 29 | public function query(string $query, bool $unbuffered = false) |
||
| 30 | { |
||
| 31 | // TODO: Implement query() method. |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritDoc |
||
| 36 | */ |
||
| 37 | public function result(string $query, int $field = -1) |
||
| 38 | { |
||
| 39 | // TODO: Implement result() method. |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritDoc |
||
| 44 | */ |
||
| 45 | public function multiQuery(string $query) |
||
| 46 | { |
||
| 47 | // TODO: Implement multiQuery() method. |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritDoc |
||
| 52 | */ |
||
| 53 | public function storedResult() |
||
| 55 | // TODO: Implement storedResult() method. |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @inheritDoc |
||
| 60 | */ |
||
| 61 | public function nextResult() |
||
| 63 | // TODO: Implement nextResult() method. |
||
| 64 | } |
||
| 65 | } |
||
| 66 |