summaryrefslogtreecommitdiffstats
path: root/tests/Parser/RestoreStatementTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parser/RestoreStatementTest.php')
-rw-r--r--tests/Parser/RestoreStatementTest.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Parser/RestoreStatementTest.php b/tests/Parser/RestoreStatementTest.php
index 7fa9a5d..2d1aa73 100644
--- a/tests/Parser/RestoreStatementTest.php
+++ b/tests/Parser/RestoreStatementTest.php
@@ -1,4 +1,5 @@
<?php
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Tests\Parser;
@@ -18,8 +19,8 @@ class RestoreStatementTest extends TestCase
public function restoreProvider()
{
- return array(
- array('parser/parseRestore')
- );
+ return [
+ ['parser/parseRestore'],
+ ];
}
}