Add namespace
This commit is contained in:
parent
a30200083a
commit
8c0f047bc7
|
@ -5,8 +5,10 @@ namespace Friendica\Module;
|
|||
use Friendica\App;
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core;
|
||||
use Friendica\Core\Config\Cache\ConfigCache;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\Renderer;
|
||||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Util\BasePath;
|
||||
use Friendica\Util\BaseURL;
|
||||
use Friendica\Util\Strings;
|
||||
|
@ -50,7 +52,7 @@ class Install extends BaseModule
|
|||
$a = self::getApp();
|
||||
|
||||
if (!$a->getMode()->isInstall()) {
|
||||
throw new \Friendica\Network\HTTPException\ForbiddenException();
|
||||
throw new HTTPException\ForbiddenException();
|
||||
}
|
||||
|
||||
// route: install/testrwrite
|
||||
|
@ -58,7 +60,7 @@ class Install extends BaseModule
|
|||
// @TODO: Replace with parameter from router
|
||||
if ($a->getArgumentValue(1, '') == 'testrewrite') {
|
||||
// Status Code 204 means that it worked without content
|
||||
throw new \Friendica\Network\HTTPException\NoContentException();
|
||||
throw new HTTPException\NoContentException();
|
||||
}
|
||||
|
||||
self::$installer = new Core\Installer();
|
||||
|
@ -333,13 +335,13 @@ class Install extends BaseModule
|
|||
/**
|
||||
* Checks the $_POST settings and updates the config Cache for it
|
||||
*
|
||||
* @param Core\Config\Cache\ConfigCache $configCache The current config cache
|
||||
* @param ConfigCache $configCache The current config cache
|
||||
* @param array $post The $_POST data
|
||||
* @param string $cat The category of the setting
|
||||
* @param string $key The key of the setting
|
||||
* @param null|string $default The default value
|
||||
*/
|
||||
private static function checkSetting(Core\Config\Cache\ConfigCache $configCache, array $post, $cat, $key, $default = null)
|
||||
private static function checkSetting(ConfigCache $configCache, array $post, $cat, $key, $default = null)
|
||||
{
|
||||
$configCache->set($cat, $key,
|
||||
Strings::escapeTags(
|
||||
|
|
Loading…
Reference in New Issue
Block a user