Skip to content

Commit 1c24c3b

Browse files
committed
Replace double quotes string with single quotes
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent e0fe9fb commit 1c24c3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Statements/CallStatement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ class CallStatement extends Statement
3838
*/
3939
public function build()
4040
{
41-
return "CALL " . $this->call->name . "(" . ($this->call->parameters ? implode(",", $this->call->parameters->raw) : "") . ")";
41+
return 'CALL ' . $this->call->name . '(' . ($this->call->parameters ? implode(',', $this->call->parameters->raw) : '') . ')';
4242
}
4343
}

0 commit comments

Comments
 (0)