$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();
}
->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();
}