Move `Config` and `PConfig` classes in `\Friendica\Core namespace`

This commit is contained in:
Fabrixxm 2016-06-10 11:52:01 +02:00
parent f2e79e976d
commit 6c346b1ab6
3 changed files with 7 additions and 8 deletions

View File

@ -1,7 +1,7 @@
<?php
namespace Friendica\Core;
/**
* @file include/Config.php
* @file include/Core/Config.php
*
* @brief Contains the class with methods for system configuration
*/

View File

@ -1,7 +1,7 @@
<?php
namespace Friendica\Core;
/**
* @file include/PConfig.php
* @file include/Core/PConfig.php
* @brief contains the class with methods for the management
* of the user configuration
*/

View File

@ -1,8 +1,4 @@
<?php
require_once("include/PConfig.php");
require_once("include/Config.php");
/**
* @file include/config.php
*
@ -16,6 +12,9 @@ require_once("include/Config.php");
* configurations need to be fixed as of 10/08/2011.
*/
use \Friendica\Core\Config;
use \Friendica\Core\PConfig;
/**
* @brief (Deprecated) Loads all configuration values of family into a cached storage.
*