()
| 127 | } |
| 128 | |
| 129 | public function close(): void |
| 130 | { |
| 131 | $this->closed = true; |
| 132 | $this->closeCurlHandles(); |
| 133 | if (is_resource($this->buffer)) { |
| 134 | @fclose($this->buffer); |
| 135 | $this->buffer = null; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | public function eof(): bool |
| 140 | { |
no test coverage detected