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.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/Parser/RestoreStatementTest.php b/tests/Parser/RestoreStatementTest.php
index 7fa9a5d..783c68e 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;
@@ -7,9 +8,9 @@ use PhpMyAdmin\SqlParser\Tests\TestCase;
class RestoreStatementTest extends TestCase
{
/**
- * @dataProvider restoreProvider
- *
* @param mixed $test
+ *
+ * @dataProvider restoreProvider
*/
public function testRestore($test)
{
@@ -18,8 +19,8 @@ class RestoreStatementTest extends TestCase
public function restoreProvider()
{
- return array(
- array('parser/parseRestore')
- );
+ return [
+ ['parser/parseRestore'],
+ ];
}
}