@@ -142,7 +142,7 @@ |
||
142 | 142 | } elseif (is_float($value)) { |
143 | 143 | // Convert to non-locale aware float to prevent possible commas |
144 | 144 | return sprintf('%F', $value); |
145 | - } elseif (is_array($value)) { |
|
145 | + } elseif (is_array($value)) { |
|
146 | 146 | // Supports MVA attributes |
147 | 147 | return '('.implode(',', $this->quoteArr($value)).')'; |
148 | 148 | } |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * (PHP 5 >= 5.0.0)<br/> |
125 | 125 | * Return the key of the current element |
126 | 126 | * @link http://php.net/manual/en/iterator.key.php |
127 | - * @return mixed scalar on success, or null on failure. |
|
127 | + * @return integer scalar on success, or null on failure. |
|
128 | 128 | */ |
129 | 129 | public function key() |
130 | 130 | { |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | * (PHP 5 >= 5.0.0)<br/> |
181 | 181 | * Return the current element |
182 | 182 | * @link http://php.net/manual/en/iterator.current.php |
183 | - * @return mixed Can return any type. |
|
183 | + * @return ResultSetInterface|null Can return any type. |
|
184 | 184 | */ |
185 | 185 | public function current() |
186 | 186 | { |
@@ -182,7 +182,7 @@ |
||
182 | 182 | * (PHP 5 >= 5.0.0)<br/> |
183 | 183 | * Return the key of the current element |
184 | 184 | * @link http://php.net/manual/en/iterator.key.php |
185 | - * @return mixed scalar on success, or null on failure. |
|
185 | + * @return integer scalar on success, or null on failure. |
|
186 | 186 | */ |
187 | 187 | public function key() |
188 | 188 | { |
@@ -38,8 +38,7 @@ |
||
38 | 38 | |
39 | 39 | try{ |
40 | 40 | $stm->execute(); |
41 | - } |
|
42 | - catch(\PDOException $exception){ |
|
41 | + } catch(\PDOException $exception){ |
|
43 | 42 | throw new DatabaseException($exception->getMessage() . ' [' . $query . ']'); |
44 | 43 | } |
45 | 44 |