From 91c6d31e3b6d5e61099e6b049c02e462b135fb90 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Fri, 27 Jan 2017 16:45:06 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Query/QOM/Sql2ScannerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Query/QOM/Sql2ScannerTest.php b/tests/Query/QOM/Sql2ScannerTest.php index a8becee5..7d3d553d 100644 --- a/tests/Query/QOM/Sql2ScannerTest.php +++ b/tests/Query/QOM/Sql2ScannerTest.php @@ -30,9 +30,9 @@ public function setUp() [nt:file] INNER JOIN [nt:folder] ON ISSAMENODE(sel1, sel2, [/home])'; - $this->tokens = array( + $this->tokens = [ 'SELECT', '*', 'FROM','[nt:file]', 'INNER', 'JOIN', '[nt:folder]', - 'ON', 'ISSAMENODE', '(', 'sel1', ',', 'sel2', ',', '[/home]', ')', ); + 'ON', 'ISSAMENODE', '(', 'sel1', ',', 'sel2', ',', '[/home]', ')', ]; } public function testConstructor()