mirror of
https://github.com/friendica/friendica
synced 2024-11-17 20:23:40 +00:00
Ignore false positive PHPStan error
see https://github.com/friendica/friendica-addons/pull/1363
This commit is contained in:
parent
a28a207774
commit
dfb821d3b5
1 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue