summaryrefslogtreecommitdiffstats
path: root/tests/Parser/CallStatementTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parser/CallStatementTest.php')
-rw-r--r--tests/Parser/CallStatementTest.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/Parser/CallStatementTest.php b/tests/Parser/CallStatementTest.php
index a90d27a..7ea75d9 100644
--- a/tests/Parser/CallStatementTest.php
+++ b/tests/Parser/CallStatementTest.php
@@ -1,4 +1,5 @@
<?php
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Tests\Parser;
@@ -18,10 +19,10 @@ class CallStatementTest extends TestCase
public function callProvider()
{
- return array(
- array('parser/parseCall'),
- array('parser/parseCall2'),
- array('parser/parseCall3')
- );
+ return [
+ ['parser/parseCall'],
+ ['parser/parseCall2'],
+ ['parser/parseCall3'],
+ ];
}
}