@@ -18,6 +18,9 @@ |
||
18 | 18 | protected $fetched = -1; |
19 | 19 | protected $iid = null; |
20 | 20 | |
21 | + /** |
|
22 | + * @param resource $statement |
|
23 | + */ |
|
21 | 24 | public function __construct($statement, $data, $iid, $charIn = null, $charOut = null) |
22 | 25 | { |
23 | 26 | $this->statement = $statement; |
@@ -90,7 +90,7 @@ |
||
90 | 90 | |
91 | 91 | public function begin() : bool |
92 | 92 | { |
93 | - return $this->transaction = true; |
|
93 | + return $this->transaction = true; |
|
94 | 94 | } |
95 | 95 | public function commit() : bool |
96 | 96 | { |
@@ -124,7 +124,7 @@ |
||
124 | 124 | } |
125 | 125 | return $new; |
126 | 126 | }) |
127 | - as $relation |
|
127 | + as $relation |
|
128 | 128 | ) { |
129 | 129 | $relations[$relation['CONSTRAINT_NAME']]['table'] = $relation['TABLE_NAME']; |
130 | 130 | $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int)$relation['POSITION']-1]] = |