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