]> git.mxchange.org Git - friendica.git/commitdiff
This class has already been "imported".
authorRoland Häder <roland@mxchange.org>
Sat, 16 Jul 2022 05:25:46 +0000 (07:25 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 16 Jul 2022 06:17:43 +0000 (08:17 +0200)
tests/src/Core/Config/Cache/ConfigFileLoaderTest.php

index b956e558ef7bee0188b0445a458992df584241b8..43decf10571f187598faaed79182f31dde03122e 100644 (file)
@@ -174,7 +174,7 @@ class ConfigFileLoaderTest extends MockedTest
                        ->at($this->root)
                        ->setContent(file_get_contents($file));
 
-               $configFileLoader = new \Friendica\Core\Config\Util\ConfigFileLoader(
+               $configFileLoader = new ConfigFileLoader(
                        $this->root->url(),
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
@@ -228,7 +228,7 @@ class ConfigFileLoaderTest extends MockedTest
                        ->at($this->root->getChild('addon')->getChild('test')->getChild('config'))
                        ->setContent(file_get_contents($file));
 
-               $configFileLoader = new \Friendica\Core\Config\Util\ConfigFileLoader(
+               $configFileLoader = new ConfigFileLoader(
                        $this->root->url(),
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
@@ -265,7 +265,7 @@ class ConfigFileLoaderTest extends MockedTest
                                ->at($this->root->getChild('config'))
                         ->setContent(file_get_contents($fileDir . 'B.config.php'));
 
-               $configFileLoader = new \Friendica\Core\Config\Util\ConfigFileLoader(
+               $configFileLoader = new ConfigFileLoader(
                        $this->root->url(),
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
@@ -299,7 +299,7 @@ class ConfigFileLoaderTest extends MockedTest
                         ->at($this->root->getChild('config'))
                         ->setContent(file_get_contents($fileDir . 'B.ini.php'));
 
-               $configFileLoader = new \Friendica\Core\Config\Util\ConfigFileLoader(
+               $configFileLoader = new ConfigFileLoader(
                        $this->root->url(),
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
@@ -333,7 +333,7 @@ class ConfigFileLoaderTest extends MockedTest
                         ->at($this->root->getChild('config'))
                         ->setContent(file_get_contents($fileDir . 'B.ini.php'));
 
-               $configFileLoader = new \Friendica\Core\Config\Util\ConfigFileLoader(
+               $configFileLoader = new ConfigFileLoader(
                        $this->root->url(),
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
                        $this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR