@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return; |
70 | 70 | } |
71 | 71 | |
72 | - $this->logger->warning('Invalid data provided to provideInitialState by ' . $appName); |
|
72 | + $this->logger->warning('Invalid data provided to provideInitialState by '.$appName); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | public function provideLazyInitialState(string $appName, string $key, Closure $closure): void { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | } catch (QueryException $e) { |
120 | 120 | // Log an continue. We can be fault tolerant here. |
121 | 121 | $this->logger->logException($e, [ |
122 | - 'message' => 'Could not load initial state provider dynamically: ' . $e->getMessage(), |
|
122 | + 'message' => 'Could not load initial state provider dynamically: '.$e->getMessage(), |
|
123 | 123 | 'level' => ILogger::ERROR, |
124 | 124 | 'app' => $initialState->getAppId(), |
125 | 125 | ]); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | if (!($provider instanceof InitialStateProvider)) { |
130 | 130 | // Log an continue. We can be fault tolerant here. |
131 | - $this->logger->error('Initial state provider is not an InitialStateProvider instance: ' . $initialState->getService(), [ |
|
131 | + $this->logger->error('Initial state provider is not an InitialStateProvider instance: '.$initialState->getService(), [ |
|
132 | 132 | 'app' => $initialState->getAppId(), |
133 | 133 | ]); |
134 | 134 | } |