mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
Remove unrecommended leading backslash for fully qualified namespaces
This commit is contained in:
parent
1d427aa214
commit
ce866ad39b
20 changed files with 44 additions and 43 deletions
|
@ -5,8 +5,8 @@
|
|||
* @brief Class for storing data for a short time
|
||||
*/
|
||||
|
||||
use \Friendica\Core\Config;
|
||||
use \Friendica\Core\PConfig;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\PConfig;
|
||||
|
||||
class Cache {
|
||||
/**
|
||||
|
@ -121,9 +121,9 @@ class Cache {
|
|||
|
||||
/**
|
||||
* @brief Put data in the cache according to the key
|
||||
*
|
||||
*
|
||||
* The input $value can have multiple formats.
|
||||
*
|
||||
*
|
||||
* @param string $key The key to the cached data
|
||||
* @param mixed $valie The value that is about to be stored
|
||||
* @param integer $duration The cache lifespan
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue