diff options
Diffstat (limited to 'tests/Builder/StatementTest.php')
-rw-r--r-- | tests/Builder/StatementTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Builder/StatementTest.php b/tests/Builder/StatementTest.php index 178901a..b75b5d5 100644 --- a/tests/Builder/StatementTest.php +++ b/tests/Builder/StatementTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Builder; @@ -15,7 +16,7 @@ class StatementTest extends TestCase { $stmt = new SelectStatement(); - $stmt->options = new OptionsArray(array('DISTINCT')); + $stmt->options = new OptionsArray(['DISTINCT']); $stmt->expr[] = new Expression('sakila', 'film', 'film_id', 'fid'); $stmt->expr[] = new Expression('COUNT(film_id)'); |