Skip to content

Commit

Permalink
ClientTracker: making it php 5.3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
pmccarren committed Apr 23, 2015
1 parent 1bf65e8 commit 22071bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ClientTracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class ClientTracker extends Client {
public $fragment_count;

public function __construct($uri, $options = array()) {
$this->fragment_count = [
$this->fragment_count = array(
'send' => 0,
'receive' => 0,
];
);

return parent::__construct($uri, $options);
}
Expand Down

0 comments on commit 22071bb

Please sign in to comment.