mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
* Update twig/twig from 3.16.0 to 3.21.1 * Update tecnickcom/tcpdf from 6.7.5 to 6.10.0 * Correct font folder case failing on linux server * Suppress documentation generator from project in favor of the online version * Update symfony/http-foundation from 6.4.2 to 6.4.14 Update symfony/runtime from 6.4.0 to 6.4.24
133 lines
5.3 KiB
PHP
133 lines
5.3 KiB
PHP
<?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 Symfony\Component\Cache\Traits\Relay;
|
|
|
|
if (version_compare(phpversion('relay'), '0.11.0', '>=')) {
|
|
/**
|
|
* @internal
|
|
*/
|
|
trait Relay11Trait
|
|
{
|
|
public function cmsIncrBy($key, $field, $value, ...$fields_and_falues): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsIncrBy(...\func_get_args());
|
|
}
|
|
|
|
public function cmsInfo($key): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsInfo(...\func_get_args());
|
|
}
|
|
|
|
public function cmsInitByDim($key, $width, $depth): \Relay\Relay|bool
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsInitByDim(...\func_get_args());
|
|
}
|
|
|
|
public function cmsInitByProb($key, $error, $probability): \Relay\Relay|bool
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsInitByProb(...\func_get_args());
|
|
}
|
|
|
|
public function cmsMerge($dstkey, $keys, $weights = []): \Relay\Relay|bool
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsMerge(...\func_get_args());
|
|
}
|
|
|
|
public function cmsQuery($key, ...$fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->cmsQuery(...\func_get_args());
|
|
}
|
|
|
|
public function commandlog($subcmd, ...$args): \Relay\Relay|array|bool|int
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->commandlog(...\func_get_args());
|
|
}
|
|
|
|
public function hexpire($hash, $ttl, $fields, $mode = null): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hexpire(...\func_get_args());
|
|
}
|
|
|
|
public function hexpireat($hash, $ttl, $fields, $mode = null): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hexpireat(...\func_get_args());
|
|
}
|
|
|
|
public function hexpiretime($hash, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hexpiretime(...\func_get_args());
|
|
}
|
|
|
|
public function hgetdel($key, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hgetdel(...\func_get_args());
|
|
}
|
|
|
|
public function hgetex($hash, $fields, $expiry = null): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hgetex(...\func_get_args());
|
|
}
|
|
|
|
public function hpersist($hash, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hpersist(...\func_get_args());
|
|
}
|
|
|
|
public function hpexpire($hash, $ttl, $fields, $mode = null): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hpexpire(...\func_get_args());
|
|
}
|
|
|
|
public function hpexpireat($hash, $ttl, $fields, $mode = null): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hpexpireat(...\func_get_args());
|
|
}
|
|
|
|
public function hpexpiretime($hash, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hpexpiretime(...\func_get_args());
|
|
}
|
|
|
|
public function hpttl($hash, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hpttl(...\func_get_args());
|
|
}
|
|
|
|
public function hsetex($key, $fields, $expiry = null): \Relay\Relay|false|int
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->hsetex(...\func_get_args());
|
|
}
|
|
|
|
public function httl($hash, $fields): \Relay\Relay|array|false
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->httl(...\func_get_args());
|
|
}
|
|
|
|
public function serverName(): false|string
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->serverName(...\func_get_args());
|
|
}
|
|
|
|
public function serverVersion(): false|string
|
|
{
|
|
return ($this->lazyObjectState->realInstance ??= ($this->lazyObjectState->initializer)())->serverVersion(...\func_get_args());
|
|
}
|
|
}
|
|
} else {
|
|
/**
|
|
* @internal
|
|
*/
|
|
trait Relay11Trait
|
|
{
|
|
}
|
|
}
|