]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/VFSTrait.php
XMPP URI and markdown are no friends (yet)
[friendica.git] / tests / Util / VFSTrait.php
index 96f385b3bad3813bb2a5f29bc56483e50611b45b..7b99806ab20b0329500213c2e18535f5b134e075 100644 (file)
@@ -58,9 +58,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 .
@@ -78,9 +78,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);