X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FInstaller.php;h=37b51d2ed953a68a56e391e5ed4242737ab962a3;hb=66da9976dc70d4a6c63e73ff9545684db881c07d;hp=01ef1d8c923c5b397ef1e3e3806abdefdba1e594;hpb=1bc4b2e0788ac11d3b377013b410f2250fff68aa;p=friendica.git diff --git a/src/Core/Installer.php b/src/Core/Installer.php index 01ef1d8c92..37b51d2ed9 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -1,12 +1,29 @@ . + * */ + namespace Friendica\Core; use DOMDocument; use Exception; -use Friendica\Core\Config\Cache\ConfigCache; +use Friendica\Core\Config\Cache; use Friendica\Database\Database; use Friendica\Database\DBStructure; use Friendica\DI; @@ -129,12 +146,12 @@ class Installer * - Creates `config/local.config.php` * - Installs Database Structure * - * @param ConfigCache $configCache The config cache with all config relevant information + * @param Cache $configCache The config cache with all config relevant information * * @return bool true if the config was created, otherwise false * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public function createConfig(ConfigCache $configCache) + public function createConfig(Cache $configCache) { $basepath = $configCache->get('system', 'basepath'); @@ -242,7 +259,7 @@ class Installer $help = ""; if (!$passed) { $help .= DI::l10n()->t('Could not find a command line version of PHP in the web server PATH.') . EOL; - $help .= DI::l10n()->t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'") . EOL; + $help .= DI::l10n()->t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'") . EOL; $help .= EOL . EOL; $tpl = Renderer::getMarkupTemplate('field_input.tpl'); /// @todo Separate backend Installer class and presentation layer/view @@ -618,12 +635,12 @@ class Installer /** * Setup the default cache for a new installation * - * @param ConfigCache $configCache The configuration cache - * @param string $basePath The determined basepath + * @param Cache $configCache The configuration cache + * @param string $basePath The determined basepath * * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public function setUpCache(ConfigCache $configCache, $basePath) + public function setUpCache(Cache $configCache, $basePath) { $configCache->set('config', 'php_path' , $this->getPHPPath()); $configCache->set('system', 'basepath' , $basePath);