We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1dc339 commit 15b4e35Copy full SHA for 15b4e35
src/Infrastructure/Theme/Theme.php
@@ -26,14 +26,14 @@ public static function setKeyValueStore(KeyValueStore $keyValueStore): void
26
*/
27
private static function getThemeConfig(): array
28
{
29
- if( null === self::$keyValueStore) {
+ if (null === self::$keyValueStore) {
30
throw new \RuntimeException('KeyValueStore not set. Please call Theme::setKeyValueStore() before using this method.');
31
}
32
if (null === self::$themeConfig) {
33
self::$themeConfig = Json::decode((string) self::$keyValueStore->find(Key::THEME));
34
35
36
- /** @var array<string, mixed> */
+ /* @var array<string, mixed> */
37
return self::$themeConfig;
38
39
0 commit comments