]> git.mxchange.org Git - friendica.git/commitdiff
fix code style
authorArt4 <art4@wlabs.de>
Fri, 16 May 2025 08:33:01 +0000 (08:33 +0000)
committerArt4 <art4@wlabs.de>
Fri, 16 May 2025 08:33:01 +0000 (08:33 +0000)
tests/src/Core/Hooks/Util/StrategiesFileManagerTest.php

index 3349f36fd6bf3c603b5a6edc3bc93eed6947aea9..7adcfc0a978f0e7a28f817bdc616e0f839f3e418 100644 (file)
@@ -184,8 +184,10 @@ class StrategiesFileManagerTest extends MockedTestCase
                $hookFileManager = new StrategiesFileManager($this->root->url(), $config);
 
                self::expectException(HookConfigException::class);
-               self::expectExceptionMessage(sprintf('config file %s does not exist.',
-                               $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'));
+               self::expectExceptionMessage(sprintf(
+                       'config file %s does not exist.',
+                       $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'
+               ));
 
                $hookFileManager->loadConfig();
        }
@@ -204,8 +206,10 @@ class StrategiesFileManagerTest extends MockedTestCase
                                 ->at($this->root);
 
                self::expectException(HookConfigException::class);
-               self::expectExceptionMessage(sprintf('Error loading config file %s.',
-                       $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'));
+               self::expectExceptionMessage(sprintf(
+                       'Error loading config file %s.',
+                       $this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'
+               ));
 
                $hookFileManager->loadConfig();
        }