diff options
author | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 11:21:45 -0300 |
---|---|---|
committer | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 11:21:45 -0300 |
commit | dac2971cef5b6c71a4a52a81e116942cea704653 (patch) | |
tree | af2e1475eb1e2fde6977164b3e69cb8ef8c933a1 /src/Components/OptionsArray.php | |
parent | 9d3d3b3e39162a8b5329e7a446b2f359b6e99c9d (diff) | |
download | sql-parser-dac2971cef5b6c71a4a52a81e116942cea704653.zip sql-parser-dac2971cef5b6c71a4a52a81e116942cea704653.tar.gz sql-parser-dac2971cef5b6c71a4a52a81e116942cea704653.tar.bz2 |
Remove useless parentheses
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'src/Components/OptionsArray.php')
-rw-r--r-- | src/Components/OptionsArray.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/OptionsArray.php b/src/Components/OptionsArray.php index ac6d7de..3e8196b 100644 --- a/src/Components/OptionsArray.php +++ b/src/Components/OptionsArray.php @@ -288,7 +288,7 @@ class OptionsArray extends Component $options[] = $option; } else { $options[] = $option['name'] - . ((! empty($option['equals']) && $option['equals']) ? '=' : ' ') + . (! empty($option['equals']) && $option['equals'] ? '=' : ' ') . (! empty($option['expr']) ? $option['expr'] : $option['value']); } } |