diff options
Diffstat (limited to 'tests/Parser/CallStatementTest.php')
-rw-r--r-- | tests/Parser/CallStatementTest.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/Parser/CallStatementTest.php b/tests/Parser/CallStatementTest.php index a90d27a..3a71ce3 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; @@ -7,9 +8,9 @@ use PhpMyAdmin\SqlParser\Tests\TestCase; class CallStatementTest extends TestCase { /** - * @dataProvider callProvider - * * @param mixed $test + * + * @dataProvider callProvider */ public function testCall($test) { @@ -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'], + ]; } } |