From 0406708db19d733ae92630cc16eac384e9362fc2 Mon Sep 17 00:00:00 2001 From: Kristoffer Brabrand Date: Wed, 2 Jul 2014 19:08:21 +0200 Subject: [PATCH] Changed array syntax to work in PHP 5.3 --- tests/VaffelTest/Silex/Provider/ImboServiceProviderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/VaffelTest/Silex/Provider/ImboServiceProviderTest.php b/tests/VaffelTest/Silex/Provider/ImboServiceProviderTest.php index a5ba161..8ab0da5 100644 --- a/tests/VaffelTest/Silex/Provider/ImboServiceProviderTest.php +++ b/tests/VaffelTest/Silex/Provider/ImboServiceProviderTest.php @@ -16,7 +16,7 @@ public function setUp() } public function testRegister() { - $serverUrls = ['http://example.com', 'http://example.net']; + $serverUrls = array('http://example.com', 'http://example.net'); $publicKey = 'foobar'; $privateKey = 'barfoo';