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.
2 parents a89b074 + 1908224 commit 9b130b3Copy full SHA for 9b130b3
CHANGELOG.md
@@ -5,6 +5,7 @@
5
* Stop instanciating an object to check its class name. (#290)
6
* Replace sscanf by equivalent native PHP functions because sscanf can be disabled for security reasons. (#270)
7
* Allow phpunit 9
8
+* Fix for php error when "INSERT INTO x SET a = 1" is "INSERT INTO x SET = 1" (#295)
9
10
## [5.2.0] - 2020-01-07
11
src/Components/SetOperation.php
@@ -37,7 +37,7 @@ class SetOperation extends Component
37
* @param string $column Field's name..
38
* @param string $value new value
39
*/
40
- public function __construct($column = null, $value = null)
+ public function __construct($column = '', $value = '')
41
{
42
$this->column = $column;
43
$this->value = $value;
0 commit comments