summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-12-14 10:22:34 -0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-12-14 10:22:34 -0300
commit1c24c3b1666638166f63945ef9c9be9d980a3e43 (patch)
treecf1f89fbb6f268d8bb4088a422788155a5743fa1 /src
parente0fe9fb3f1a0691ae43ed911e6f569e632111089 (diff)
downloadsql-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.php2
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) : '') . ')';
}
}