You are here

private function StreamHandler::add_progress in Lockr 7.3

File

vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php, line 461

Class

StreamHandler
HTTP handler that uses PHP's HTTP stream wrapper.

Namespace

GuzzleHttp\Handler

Code

private function add_progress(RequestInterface $request, &$options, $value, &$params) {
  $this
    ->addNotification($params, function ($code, $a, $b, $c, $transferred, $total) use ($value) {
    if ($code == STREAM_NOTIFY_PROGRESS) {
      $value($total, $transferred, null, null);
    }
  });
}