Skip to content

Commit

Permalink
Cleanup fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Jan 3, 2024
1 parent 2e8f881 commit 3c862fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/Classes/AbstractTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function tearDown(): void
*/
protected static function setExtConf(array $extConf)
{
$config = \DMK\MkSanitizedParameters\Factory::getConfiguration();
$config = Factory::getConfiguration();
// now override the extconf array property
$reflector = new \ReflectionClass(get_class($config));
$property = $reflector->getProperty('extensionConfiguration');
Expand Down
2 changes: 1 addition & 1 deletion Tests/Classes/Utility/ConfigurationUtilityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public function getExtensionConfigurationLoadsCorrect(
bool $isStealthMode,
int $stealthModeStoragePid
) {
$config = \DMK\MkSanitizedParameters\Factory::getConfiguration();
$config = Factory::getConfiguration();
// now override the extconf array property
$configReflection = new \ReflectionObject($config);
$extensionConfigurationProperty = $configReflection->getProperty('extensionConfiguration');
Expand Down

0 comments on commit 3c862fa

Please sign in to comment.