add @since annotation + @see from Hispka

This commit is contained in:
odain
2021-11-09 17:14:13 +01:00
parent a7e54d4bad
commit 865f9f4f67
2 changed files with 8 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
<?php
/**
* Class ApcService
* @since 2.7.6 N°4125
*/
class ApcService {
public function __construct() {
}
@@ -11,6 +15,7 @@ class ApcService {
/**
* @param $key string|array
* @return mixed
* @see apc_fetch
*/
function apc_fetch($key)
{
@@ -22,6 +27,7 @@ class ApcService {
* @param $var
* @param int $ttl
* @return array|bool
* @see apc_store
*/
function apc_store($key, $var = NULL, $ttl = 0)
{

View File

@@ -238,6 +238,7 @@ class Dict
}
/**
* @since 2.7.6 N°4125
* @return \ApcService
*/
public static function GetApcService() {
@@ -248,6 +249,7 @@ class Dict
}
/**
* @since 2.7.6 N°4125
* @param \ApcService $m_oApcService
*/
public static function SetApcService($oApcService) {