summaryrefslogtreecommitdiffstats
path: root/src/Statements/CallStatement.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Statements/CallStatement.php')
-rw-r--r--src/Statements/CallStatement.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Statements/CallStatement.php b/src/Statements/CallStatement.php
index 00cb95c..6a3de69 100644
--- a/src/Statements/CallStatement.php
+++ b/src/Statements/CallStatement.php
@@ -1,8 +1,8 @@
<?php
-
/**
* `CALL` statement.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Statements;
@@ -17,10 +17,6 @@ use PhpMyAdmin\SqlParser\Statement;
* or
*
* CALL sp_name[()]
- *
- * @category Statements
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class CallStatement extends Statement
{
@@ -38,6 +34,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) : '') . ')';
}
}