Move Config
and PConfig
classes in \Friendica\Core namespace
This commit is contained in:
parent
f2e79e976d
commit
6c346b1ab6
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Friendica\Core;
|
||||||
/**
|
/**
|
||||||
* @file include/Config.php
|
* @file include/Core/Config.php
|
||||||
*
|
*
|
||||||
* @brief Contains the class with methods for system configuration
|
* @brief Contains the class with methods for system configuration
|
||||||
*/
|
*/
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Friendica\Core;
|
||||||
/**
|
/**
|
||||||
* @file include/PConfig.php
|
* @file include/Core/PConfig.php
|
||||||
* @brief contains the class with methods for the management
|
* @brief contains the class with methods for the management
|
||||||
* of the user configuration
|
* of the user configuration
|
||||||
*/
|
*/
|
|
@ -1,8 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once("include/PConfig.php");
|
|
||||||
require_once("include/Config.php");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file 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.
|
* 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.
|
* @brief (Deprecated) Loads all configuration values of family into a cached storage.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue