diff options
author | Michal Čihař <michal@cihar.com> | 2017-02-14 14:10:01 +0100 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2017-02-14 14:10:01 +0100 |
commit | d368724f9fc810fc9a2c704ac66674af8cdf1d15 (patch) | |
tree | 4339473063de5d06b7f6931e19c185ac3b77350b /src/Components/SetOperation.php | |
parent | 6e4dc051fdc5b1661fea974708bd782e93a6e404 (diff) | |
parent | 28be60a5645a93531d7ce34e9b099f7228c3d607 (diff) | |
download | sql-parser-d368724f9fc810fc9a2c704ac66674af8cdf1d15.zip sql-parser-d368724f9fc810fc9a2c704ac66674af8cdf1d15.tar.gz sql-parser-d368724f9fc810fc9a2c704ac66674af8cdf1d15.tar.bz2 |
Merge remote-tracking branch 'origin/pull/138'
Diffstat (limited to 'src/Components/SetOperation.php')
-rw-r--r-- | src/Components/SetOperation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Components/SetOperation.php b/src/Components/SetOperation.php index 087ff6a..364165a 100644 --- a/src/Components/SetOperation.php +++ b/src/Components/SetOperation.php @@ -128,8 +128,8 @@ class SetOperation extends Component { if (is_array($component)) { return implode(', ', $component); - } else { - return $component->column . ' = ' . $component->value; } + + return $component->column . ' = ' . $component->value; } } |