diff options
author | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 10:22:34 -0300 |
---|---|---|
committer | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 10:22:34 -0300 |
commit | 1c24c3b1666638166f63945ef9c9be9d980a3e43 (patch) | |
tree | cf1f89fbb6f268d8bb4088a422788155a5743fa1 /src | |
parent | e0fe9fb3f1a0691ae43ed911e6f569e632111089 (diff) | |
download | sql-parser-1c24c3b1666638166f63945ef9c9be9d980a3e43.zip sql-parser-1c24c3b1666638166f63945ef9c9be9d980a3e43.tar.gz sql-parser-1c24c3b1666638166f63945ef9c9be9d980a3e43.tar.bz2 |
Replace double quotes string with single quotes
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'src')
-rw-r--r-- | src/Statements/CallStatement.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Statements/CallStatement.php b/src/Statements/CallStatement.php index 570d3a8..7b4fc75 100644 --- a/src/Statements/CallStatement.php +++ b/src/Statements/CallStatement.php @@ -38,6 +38,6 @@ class CallStatement extends Statement */ public function build() { - return "CALL " . $this->call->name . "(" . ($this->call->parameters ? implode(",", $this->call->parameters->raw) : "") . ")"; + return 'CALL ' . $this->call->name . '(' . ($this->call->parameters ? implode(',', $this->call->parameters->raw) : '') . ')'; } } |