Файл: vendor/symfony/cache/Traits/Relay/Relay30Trait.php
Строк: 55
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyComponentCacheTraitsRelay;
if (version_compare(phpversion('relay'), '0.30.0', '>=')) {
/**
* @internal
*/
trait Relay30Trait
{
public function increx($key, $value = null, $options = null): RelayRelay|array|false
{
return $this->initializeLazyObject()->increx(...func_get_args());
}
public function unwatch(): RelayRelay|bool|string
{
return $this->initializeLazyObject()->unwatch(...func_get_args());
}
public function xnack($key, $group, $mode, $ids, $options = null): RelayRelay|false|int
{
return $this->initializeLazyObject()->xnack(...func_get_args());
}
}
} else {
/**
* @internal
*/
trait Relay30Trait
{
public function unwatch(): RelayRelay|bool
{
return $this->initializeLazyObject()->unwatch(...func_get_args());
}
}
}