Skip to content

Commit cee48c7

Browse files
committed
fix array syntax for PHP 5.3
1 parent e77c39c commit cee48c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/OpenTok/OpenTokTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ public function testUpdatesStreamLayoutClassList()
10571057

10581058
$sessionId = 'SESSIONID';
10591059
$streamId = 'STREAMID';
1060-
$layoutClassList = ['foo', 'bar'];
1060+
$layoutClassList = array('foo', 'bar');
10611061

10621062
// Act
10631063
$this->opentok->updateStream($sessionId, $streamId, array(

0 commit comments

Comments
 (0)