From 349966832f1532c35be36c68ab3e1c94668f1bfb Mon Sep 17 00:00:00 2001 From: Kiel Goodman Date: Sat, 6 Dec 2014 14:59:31 +0000 Subject: [PATCH] [DDC-3436] Convert short array syntax to legacy style --- tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php b/tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php index 06a23199e..2b9fc2304 100644 --- a/tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php +++ b/tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php @@ -47,7 +47,7 @@ class QueryExpressionVisitorTest extends \PHPUnit_Framework_TestCase */ protected function setUp() { - $this->visitor = new QueryExpressionVisitor(['o','p']); + $this->visitor = new QueryExpressionVisitor(array('o','p')); } /**