From: Art4 Date: Tue, 5 Nov 2024 15:26:24 +0000 (+0000) Subject: Ignore false positive PHPStan error X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dfb821d3b5d6da6fbce54a1f16d807f64b49e098;p=friendica.git Ignore false positive PHPStan error see https://github.com/friendica/friendica-addons/pull/1363 --- diff --git a/src/Core/Cache/Type/APCuCache.php b/src/Core/Cache/Type/APCuCache.php index d9bcfbc60d..5564a1e793 100644 --- a/src/Core/Cache/Type/APCuCache.php +++ b/src/Core/Cache/Type/APCuCache.php @@ -7,7 +7,6 @@ namespace Friendica\Core\Cache\Type; -use APCUIterator; use Friendica\Core\Cache\Enum\Duration; use Friendica\Core\Cache\Capability\ICanCacheInMemory; use Friendica\Core\Cache\Exception\InvalidCacheDriverException; @@ -42,7 +41,8 @@ class APCuCache extends AbstractCache implements ICanCacheInMemory $ns = $this->getCacheKey($prefix ?? ''); $ns = preg_quote($ns, '/'); - $iterator = new APCUIterator('/^' . $ns . '/', APC_ITER_KEY); + /** @phpstan-ignore-next-line see https://github.com/friendica/friendica-addons/pull/1363 */ + $iterator = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY); $keys = []; foreach ($iterator as $item) { @@ -119,7 +119,8 @@ class APCuCache extends AbstractCache implements ICanCacheInMemory $prefix = $this->getPrefix(); $prefix = preg_quote($prefix, '/'); - $iterator = new APCUIterator('/^' . $prefix . '/', APC_ITER_KEY); + /** @phpstan-ignore-next-line see https://github.com/friendica/friendica-addons/pull/1363 */ + $iterator = new \APCUIterator('/^' . $prefix . '/', APC_ITER_KEY); return apcu_delete($iterator); }