friendica/src/Core/PConfig.php

23 line
466 B
PHP

2016-06-06 10:22:14 +02:00
<?php
/**
2018-03-03 18:13:20 +01:00
* User Configuration Class
*
* @file include/Core/PConfig.php
*
* @brief Contains the class with methods for user configuration
*/
namespace Friendica\Core;
use Friendica\DI;
2016-06-06 10:22:14 +02:00
/**
* @brief Management of user configuration storage
* Note:
* Please do not store booleans - convert to 0/1 integer values
* The DI::pConfig()->get() functions return boolean false for keys that are unset,
* and this could lead to subtle bugs.
2016-06-06 10:22:14 +02:00
*/
class PConfig
{
2016-06-06 10:22:14 +02:00
}