Skip to content

Commit cb16bb1

Browse files
committed
cs-fixer
1 parent b0314e1 commit cb16bb1

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/Framework/Storage/JsonParsedDataStorage.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,7 @@ public function load(): void
142142

143143
$data = json_decode($jsonContent, true);
144144
if (!is_array($data)) {
145-
throw new \RuntimeException($this->corruptCacheMessage(
146-
sprintf('is not valid JSON (%s)', json_last_error_msg())
147-
));
145+
throw new \RuntimeException($this->corruptCacheMessage(sprintf('is not valid JSON (%s)', json_last_error_msg())));
148146
}
149147

150148
foreach ($data as $entityData) {

0 commit comments

Comments
 (0)