summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/apcu.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-12-10 05:22:37 +0000
committerAndrew Dolgov <fox@fakecake.org>2024-12-10 05:22:37 +0000
commit0ef2dd7175248e1116a867e0a86579d9f6ca16eb (patch)
tree452fc6e3391544b209ea075d587935e7ab42e714 /vendor/thecodingmachine/safe/generated/apcu.php
parentf15db7b9610467aa29f6441361fdc4e6c90deaa1 (diff)
parent3860435cba19cf2cd9c86dcc5d8938198c6b6736 (diff)
Merge branch 'feature/alpine_3.21-and-php_8.4' into 'master'
Bump to Alpine 3.21 and PHP 8.4, raise the minimum to PHP 8.2 See merge request tt-rss/tt-rss!85
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/apcu.php')
-rw-r--r--vendor/thecodingmachine/safe/generated/apcu.php112
1 files changed, 0 insertions, 112 deletions
diff --git a/vendor/thecodingmachine/safe/generated/apcu.php b/vendor/thecodingmachine/safe/generated/apcu.php
deleted file mode 100644
index 733b24360..000000000
--- a/vendor/thecodingmachine/safe/generated/apcu.php
+++ /dev/null
@@ -1,112 +0,0 @@
-<?php
-
-namespace Safe;
-
-use Safe\Exceptions\ApcuException;
-
-/**
- * Retrieves cached information and meta-data from APC's data store.
- *
- * @param bool $limited If limited is TRUE, the
- * return value will exclude the individual list of cache entries. This
- * is useful when trying to optimize calls for statistics gathering.
- * @return array Array of cached data (and meta-data)
- * @throws ApcuException
- *
- */
-function apcu_cache_info(bool $limited = false): array
-{
- error_clear_last();
- $result = \apcu_cache_info($limited);
- if ($result === false) {
- throw ApcuException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * apcu_cas updates an already existing integer value if the
- * old parameter matches the currently stored value
- * with the value of the new parameter.
- *
- * @param string $key The key of the value being updated.
- * @param int $old The old value (the value currently stored).
- * @param int $new The new value to update to.
- * @throws ApcuException
- *
- */
-function apcu_cas(string $key, int $old, int $new): void
-{
- error_clear_last();
- $result = \apcu_cas($key, $old, $new);
- if ($result === false) {
- throw ApcuException::createFromPhpError();
- }
-}
-
-
-/**
- * Decreases a stored integer value.
- *
- * @param string $key The key of the value being decreased.
- * @param int $step The step, or value to decrease.
- * @param bool|null $success Optionally pass the success or fail boolean value to
- * this referenced variable.
- * @param int $ttl TTL to use if the operation inserts a new value (rather than decrementing an existing one).
- * @return int Returns the current value of key's value on success
- * @throws ApcuException
- *
- */
-function apcu_dec(string $key, int $step = 1, ?bool &$success = null, int $ttl = 0): int
-{
- error_clear_last();
- $result = \apcu_dec($key, $step, $success, $ttl);
- if ($result === false) {
- throw ApcuException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * Increases a stored number.
- *
- * @param string $key The key of the value being increased.
- * @param int $step The step, or value to increase.
- * @param bool|null $success Optionally pass the success or fail boolean value to
- * this referenced variable.
- * @param int $ttl TTL to use if the operation inserts a new value (rather than incrementing an existing one).
- * @return int Returns the current value of key's value on success
- * @throws ApcuException
- *
- */
-function apcu_inc(string $key, int $step = 1, ?bool &$success = null, int $ttl = 0): int
-{
- error_clear_last();
- $result = \apcu_inc($key, $step, $success, $ttl);
- if ($result === false) {
- throw ApcuException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * Retrieves APCu Shared Memory Allocation information.
- *
- * @param bool $limited When set to FALSE (default) apcu_sma_info will
- * return a detailed information about each segment.
- * @return array Array of Shared Memory Allocation data; FALSE on failure.
- * @throws ApcuException
- *
- */
-function apcu_sma_info(bool $limited = false): array
-{
- error_clear_last();
- $result = \apcu_sma_info($limited);
- if ($result === false) {
- throw ApcuException::createFromPhpError();
- }
- return $result;
-}