Skip to content

Commit 3b3823b

Browse files
mattamongithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent cb0f19a commit 3b3823b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Models/Tool/SettingsStoreResolver.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525
final class SettingsStoreResolver implements SettingsStoreResolverInterface
2626
{
27-
2827
/**
2928
* @throws Exception
3029
*/
@@ -40,11 +39,11 @@ public function delete(string $id, ?string $scope = null): int|string
4039

4140
public function get(string $id, ?string $scope = null): ?SettingsStore
4241
{
43-
return SettingsStore::get($id, $scope);
42+
return SettingsStore::get($id, $scope);
4443
}
4544

4645
public function getIdsByScope(string $scope): array
4746
{
4847
return SettingsStore::getIdsByScope($scope);
4948
}
50-
}
49+
}

src/Models/Tool/SettingsStoreResolverInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ public function delete(string $id, ?string $scope = null): int|string;
2727
public function get(string $id, ?string $scope = null): ?SettingsStore;
2828

2929
public function getIdsByScope(string $scope): array;
30-
}
30+
}

0 commit comments

Comments
 (0)