diff options
Diffstat (limited to 'tests/Misc/BugsTest.php')
-rw-r--r-- | tests/Misc/BugsTest.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/Misc/BugsTest.php b/tests/Misc/BugsTest.php index d356b57..3769b1f 100644 --- a/tests/Misc/BugsTest.php +++ b/tests/Misc/BugsTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Misc; @@ -18,15 +19,15 @@ class BugsTest extends TestCase public function bugProvider() { - return array( - array('bugs/gh9'), - array('bugs/gh14'), - array('bugs/gh16'), - array('bugs/pma11800'), - array('bugs/pma11836'), - array('bugs/pma11843'), - array('bugs/pma11867'), - array('bugs/pma11879') - ); + return [ + ['bugs/gh9'], + ['bugs/gh14'], + ['bugs/gh16'], + ['bugs/pma11800'], + ['bugs/pma11836'], + ['bugs/pma11843'], + ['bugs/pma11867'], + ['bugs/pma11879'], + ]; } } |