We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e99a3 commit 48c9decCopy full SHA for 48c9dec
src/Kir/MySQL/Builder/Statement.php
@@ -16,13 +16,6 @@ public function __construct(Database $db) {
16
$this->db = $db;
17
}
18
19
- /**
20
- * @return Database
21
- */
22
- protected function db() {
23
- return $this->db;
24
- }
25
-
26
/**
27
* @param bool $stop
28
* @return $this
@@ -38,4 +31,18 @@ public function debug($stop = true) {
38
31
39
32
return $this;
40
33
41
-}
34
+
35
+ /**
36
+ * @return Statement
37
+ */
+ public function cloneStatement() {
+ return clone $this;
+ }
42
43
+ * @return Database
44
45
+ protected function db() {
46
+ return $this->db;
47
48
+}
0 commit comments