mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
add @since annotation + @see from Hispka
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user