mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 12:14:06 +02:00
[ticket/11230] Use inheritdoc in docblocks in cache drivers
http://tracker.phpbb.com/browse/PHPBB3-11230 PHPBB3-11230
This commit is contained in:
30
phpBB/phpbb/cache/driver/file.php
vendored
30
phpBB/phpbb/cache/driver/file.php
vendored
@@ -33,7 +33,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Load global cache
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function load()
|
||||
{
|
||||
@@ -41,7 +41,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Unload cache object
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function unload()
|
||||
{
|
||||
@@ -58,7 +58,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Save modified objects
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function save()
|
||||
{
|
||||
@@ -93,7 +93,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Tidy cache
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function tidy()
|
||||
{
|
||||
@@ -155,7 +155,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Get saved cache object
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function get($var_name)
|
||||
{
|
||||
@@ -177,7 +177,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Put data into cache
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function put($var_name, $var, $ttl = 31536000)
|
||||
{
|
||||
@@ -194,7 +194,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Purge cache data
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function purge()
|
||||
{
|
||||
@@ -280,7 +280,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroy cache data
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function destroy($var_name, $table = '')
|
||||
{
|
||||
@@ -359,7 +359,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a given cache entry exist
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function _exists($var_name)
|
||||
{
|
||||
@@ -385,7 +385,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Load cached sql query
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_load($query)
|
||||
{
|
||||
@@ -431,7 +431,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Ceck if a given sql query exist in cache
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_exists($query_id)
|
||||
{
|
||||
@@ -439,7 +439,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch row from cache (database)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_fetchrow($query_id)
|
||||
{
|
||||
@@ -452,7 +452,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a field from the current row of a cached database result (database)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_fetchfield($query_id, $field)
|
||||
{
|
||||
@@ -465,7 +465,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Seek a specific row in an a cached database result (database)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_rowseek($rownum, $query_id)
|
||||
{
|
||||
@@ -479,7 +479,7 @@ class file extends \phpbb\cache\driver\base
|
||||
}
|
||||
|
||||
/**
|
||||
* Free memory used for a cached database result (database)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_freeresult($query_id)
|
||||
{
|
||||
|
Reference in New Issue
Block a user