1
0
mirror of synced 2025-02-21 22:53:15 +03:00

[DDC-3436] Convert short array syntax to legacy style

This commit is contained in:
Kiel Goodman 2014-12-06 14:59:31 +00:00 committed by Marco Pivetta
parent 918d2910d9
commit 349966832f

View File

@ -47,7 +47,7 @@ class QueryExpressionVisitorTest extends \PHPUnit_Framework_TestCase
*/ */
protected function setUp() protected function setUp()
{ {
$this->visitor = new QueryExpressionVisitor(['o','p']); $this->visitor = new QueryExpressionVisitor(array('o','p'));
} }
/** /**