Phue\Transport\Adapter\Streaming::close PHP Метод

close() публичный Метод

Closes the streaming connection
public close ( )
    public function close()
    {
        if (is_resource($this->fileStream)) {
            fclose($this->fileStream);
        }
        $this->streamContext = null;
    }