Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.

Commit f048370

Browse files
author
Nik Barham
committed
Fixing clone issue for Column objects
1 parent 8e22030 commit f048370

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/Database/QueryBuilder/Column.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
class Column implements Renderable
1616
{
17-
protected $sqlstring;
18-
1917
protected $database;
2018
protected $schema;
2119
protected $column;
@@ -109,11 +107,6 @@ public function __construct($column)
109107

110108
throw new Exception\QueryBuilder('Cannot resolve column name', $column);
111109
}
112-
113-
public function __clone()
114-
{
115-
$this->sqlstring = clone $this->sqlstring;
116-
}
117110

118111
public function escape(string $name) : string
119112
{

0 commit comments

Comments
 (0)