We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 482a813 commit 0a257abCopy full SHA for 0a257ab
CHANGELOG.md
@@ -10,6 +10,18 @@
10
11
### Fixed
12
13
+## 0.3.1 (2020-07-14)
14
+
15
+### Added
16
17
+### Deprecated
18
19
+### Removed
20
21
+### Fixed
22
23
+* Undefined property `$handle` in `\ArangoDb\Http\Client`
24
25
## 0.3.0 (2020-07-07)
26
27
### Added
src/Http/Client.php
@@ -359,6 +359,6 @@ private function open(RequestInterface $request): void
359
private function close(): void
360
{
361
fclose($this->handle);
362
- unset($this->handle);
+ $this->handle = null; // @phpstan-ignore-line
363
}
364
0 commit comments