Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0625 |
Changes | 0 |
1 | <?php |
||
21 | 3 | public function lastInsertId($name = null) |
|
22 | { |
||
23 | 3 | if (null === $name) { |
|
24 | 2 | return parent::lastInsertId($name); |
|
25 | } |
||
26 | |||
27 | 1 | $stmt = $this->prepare('SELECT CONVERT(VARCHAR(MAX), current_value) FROM sys.sequences WHERE name = ?'); |
|
28 | 1 | $stmt->execute([$name]); |
|
29 | |||
30 | 1 | return $stmt->fetchColumn(); |
|
31 | } |
||
56 |