Skip to content

Commit 7ccc564

Browse files
committed
php 5.3
1 parent 73e48ef commit 7ccc564

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/CurlMultiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function curl_multi_exec($h, &$r)
5555

5656
class CurlMultiTest extends \PHPUnit_Framework_TestCase
5757
{
58-
static public $log;
58+
static public $log = array();
5959

6060
public function testAll()
6161
{

test/CurlShareTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function curl_share_setopt($h, $o, $v)
1818

1919
class CurlShareTest extends \PHPUnit_Framework_TestCase
2020
{
21-
static public $log = [];
21+
static public $log = array();
2222

2323
public function testAll()
2424
{

test/CurlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function curl_errno($h)
7878

7979
class CurlTest extends \PHPUnit_Framework_TestCase
8080
{
81-
static public $log = [];
81+
static public $log = array();
8282
static public $mock;
8383

8484
public function setUp()

0 commit comments

Comments
 (0)