N°4125 - phpdoc only coming from pull request

Thanks to Hispka and  piRGoif
This commit is contained in:
odain
2021-11-26 09:17:19 +01:00
parent bea52d5fb9
commit f1037147a9

View File

@@ -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)
{