Skip to content

Commit

Permalink
Testing if we were running into a sonarcloud bug
Browse files Browse the repository at this point in the history
  • Loading branch information
joernott committed Aug 16, 2024
1 parent 470654f commit 7c6c350
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/Module/Controller/ModuleSettingController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* See LICENSE file for license details.
*/

/* Random comment for testing purpose */

declare(strict_types=1);

namespace OxidEsales\GraphQL\ConfigurationAccess\Module\Controller;
Expand Down
5 changes: 1 addition & 4 deletions src/Module/Service/ModuleSettingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ public function __construct(

public function getIntegerSetting(string $name, string $moduleId): IntegerSetting
{
return new IntegerSetting(
$name,
$this->moduleSettingService->getInteger($name, $moduleId)
);
return new IntegerSetting($name, $this->moduleSettingService->getInteger($name, $moduleId));
}

public function getFloatSetting(string $name, string $moduleId): FloatSetting
Expand Down

0 comments on commit 7c6c350

Please sign in to comment.