ElephantIO\Engine\SocketIO\Version0X::close PHP Метод

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

{@inheritDoc}
public close ( )
    public function close()
    {
        if (!is_resource($this->stream)) {
            return;
        }
        $this->write(static::CLOSE);
        fclose($this->stream);
        $this->stream = null;
        $this->session = null;
        $this->cookies = [];
    }