Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0625 |
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 | |||
56 |