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 aa96117 commit fc52b05Copy full SHA for fc52b05
composer.json
@@ -23,7 +23,7 @@
23
"phpstan/phpstan": "^0.12.91",
24
"phpunit/phpunit": "^9.1",
25
"predis/predis": "^1.1",
26
- "rector/rector": "0.11.42",
+ "rector/rector": "0.11.43",
27
"symplify/package-builder": "^9.3"
28
},
29
"suggest": {
system/Cache/Handlers/MemcachedHandler.php
@@ -138,7 +138,7 @@ public function get(string $key)
138
}
139
} elseif ($this->memcached instanceof Memcache) {
140
$flags = false;
141
- $data = $this->memcached->get($key, $flags); // @phpstan-ignore-line
+ $data = $this->memcached->get($key, $flags);
142
143
// check for unmatched key (i.e. $flags is untouched)
144
if ($flags === false) {
0 commit comments