Skip to content

Commit

Permalink
Fix Warning
Browse files Browse the repository at this point in the history
Warning: call_user_func() expects parameter 1 to be a valid callback, class 'PHPSocketIO\Engine\Transports\PollingXHR' does not have a method 'dataRequestOnClose'
  • Loading branch information
walkor authored Feb 28, 2017
1 parent 6c8b019 commit e814c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Engine/Transports/Polling.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function dataRequestCleanup()
$this->dataReq = $this->dataRes = null;
}

public function dataRequestClose()
public function dataRequestOnClose()
{
$this->dataRequestCleanup();
$this->onError('data request connection closed prematurely');
Expand Down

0 comments on commit e814c46

Please sign in to comment.