From f1037147a9f55363ef4e209d894002f45d3d568d Mon Sep 17 00:00:00 2001 From: odain Date: Fri, 26 Nov 2021 09:17:19 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B04125=20-=20phpdoc=20only=20coming=20from?= =?UTF-8?q?=20pull=20request=20Thanks=20to=20Hispka=20and=20=20piRGoif?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/apc-service.class.inc.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/apc-service.class.inc.php b/core/apc-service.class.inc.php index 760bc980e..0d462f19f 100644 --- a/core/apc-service.class.inc.php +++ b/core/apc-service.class.inc.php @@ -8,14 +8,19 @@ class ApcService { public function __construct() { } + /** + * @param string $function_name + * @return bool + * @see function_exists() + */ public function function_exists($function_name) { return function_exists($function_name); } /** - * @param $key string|array + * @param string|array $key * @return mixed - * @see apc_fetch + * @see apc_fetch() */ function apc_fetch($key) { @@ -27,7 +32,7 @@ class ApcService { * @param $var * @param int $ttl * @return array|bool - * @see apc_store + * @see apc_store() */ function apc_store($key, $var = NULL, $ttl = 0) {