fix phpdoc

This commit is contained in:
Philipp Holzer 2019-07-14 22:41:09 +02:00
parent 05439e4866
commit a654470061
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
3 changed files with 11 additions and 19 deletions

View file

@ -5,10 +5,10 @@ namespace Friendica\Core\Config;
use Friendica\Model;
/**
* This class is responsible for all system-wide configuration values in Friendica
* There are two types of storage
* - The Config-Files (loaded into the FileCache @see Cache\ConfigCache )
* - The Config-DB-Table (per Config-DB-model @see Model\Config\Config )
* This class implements the preload Time configuration, which will cache
* all config values per call in a cache.
*
* Minimizes the number of database queries to retrieve configuration values at the cost of memory.
*/
class PreloadConfiguration extends Configuration
{