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.
2 parents ce3d01c + e918fbd commit 534131cCopy full SHA for 534131c
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# CHANGELOG
2
3
+### 2.1.1 (January 12 2021)
4
+
5
+- Bug fix issue reported in Laravel SDK
6
+ (https://github.com/ipinfo/laravel/issues/14) which also applies in PHP SDK,
7
+ with https://github.com/ipinfo/php/pull/27.
8
9
### 2.1.0 (December 2 2020)
10
11
- Deprecate PHP 7.2 support.
src/cache/DefaultCache.php
@@ -17,7 +17,7 @@ class DefaultCache implements CacheInterface
17
public function __construct(int $maxsize, int $ttl)
18
{
19
$this->cache = new \Sabre\Cache\Memory();
20
- $this->element_queue;
+ $this->element_queue = array();
21
$this->maxsize = $maxsize;
22
$this->ttl = $ttl;
23
}
0 commit comments