We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60327bc commit 11d0e29Copy full SHA for 11d0e29
tests/MemcachedTest.php
@@ -33,6 +33,13 @@ public function createSimpleCache()
33
);
34
}
35
36
+ // See https://github.com/php-memcached-dev/php-memcached/issues/509
37
+ if (version_compare(PHP_VERSION, '8.1.0', '>=')) {
38
+ $this->markTestSkipped(
39
+ 'The Memcached extension is does not work with PHP 8.1 yet.'
40
+ );
41
+ }
42
+
43
list($host, $port) = explode(':', CACHE_TESTS_MEMCACHED_SERVER) + [1 => 11211];
44
45
$adapter = new Memcached();
0 commit comments