summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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) : '') . ')';
}
}