]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/VFSTrait.php
Remove relocation form from Admin Site settings
[friendica.git] / tests / Util / VFSTrait.php
index 110f24a61ae38e4a54b8c03dcfcb0ac1b3b0ce2f..53d37f85c81be96443acc7765af5786c78a1a338 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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\Test\Util;
 
@@ -23,11 +42,14 @@ trait VFSTrait
                        'bin' => [],
                        'static' => [],
                        'test' => [],
+                       'logs' => [],
+                       'config2' => [],
                ];
 
                // create a virtual directory and copy all needed files and folders to it
                $this->root = vfsStream::setup('friendica', 0777, $structure);
 
+               $this->setConfigFile('dbstructure.config.php', true);
                $this->setConfigFile('defaults.config.php', true);
                $this->setConfigFile('settings.config.php', true);
                $this->setConfigFile('local.config.php');
@@ -37,9 +59,9 @@ trait VFSTrait
         * Copying a config file from the file system to the Virtual File System
         *
         * @param string $filename The filename of the config file
-        * @param bool $static True, if the folder `static` instead of `config` should be used
+        * @param bool   $static   True, if the folder `static` instead of `config` should be used
         */
-       protected function setConfigFile($filename, bool $static = false)
+       protected function setConfigFile(string $filename, bool $static = false)
        {
                $file = dirname(__DIR__) . DIRECTORY_SEPARATOR .
                        '..' . DIRECTORY_SEPARATOR .
@@ -57,9 +79,9 @@ trait VFSTrait
         * Delets a config file from the Virtual File System
         *
         * @param string $filename The filename of the config file
-        * @param bool $static True, if the folder `static` instead of `config` should be used
+        * @param bool   $static   True, if the folder `static` instead of `config` should be used
         */
-       protected function delConfigFile($filename, bool $static = false)
+       protected function delConfigFile(string $filename, bool $static = false)
        {
                if ($this->root->hasChild(($static ? 'static' : 'config') . '/' . $filename)) {
                        $this->root->getChild(($static ? 'static' : 'config'))->removeChild($filename);