Remove unused use statements & remove PConfig class

This commit is contained in:
nupplaPhil 2020-01-18 17:02:59 +01:00
parent b5c0df439f
commit 800694e9b3
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
57 changed files with 0 additions and 102 deletions

View file

@ -1,22 +0,0 @@
<?php
/**
* User Configuration Class
*
* @file include/Core/PConfig.php
*
* @brief Contains the class with methods for user configuration
*/
namespace Friendica\Core;
use Friendica\DI;
/**
* @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.
*/
class PConfig
{
}