]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Installer.php
Merge pull request #8812 from tobiasd/2020.06-credits
[friendica.git] / src / Core / Installer.php
index 01ef1d8c923c5b397ef1e3e3806abdefdba1e594..37b51d2ed953a68a56e391e5ed4242737ab962a3 100644 (file)
@@ -1,12 +1,29 @@
 <?php
 /**
- * @file src/Core/Install.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . 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 <a href='https://github.com/friendica/friendica/blob/stable/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . 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);