| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2.0438 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 2 | public function getSequenceNumber(string $name) : string |
|
| 20 | { |
||
| 21 | 2 | $stmt = $this->prepare('SELECT CONVERT(VARCHAR(MAX), current_value) FROM sys.sequences WHERE name = ?'); |
|
| 22 | 2 | $stmt->execute([$name]); |
|
| 23 | |||
| 24 | 2 | $result = $stmt->fetchColumn(); |
|
| 25 | |||
| 26 | 2 | if ($result === false) { |
|
| 27 | 1 | throw DriverException::noSuchSequence($name); |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | return (string) $result; |
|
| 31 | } |
||
| 56 |