Skip to content

Commit 16c3ab3

Browse files
Fix CS/WS issue
1 parent 8bf1d7f commit 16c3ab3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/Utils/FileUtils.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ public static function getFileContent(string $file): string
2323
if (false === $content) {
2424
$error = error_get_last();
2525

26-
throw new RuntimeException(sprintf(
27-
'Failed to read content of file "%s".%s',
28-
$file,
29-
$error ? ' ' . $error['message'] : ''
30-
));
26+
throw new RuntimeException(
27+
sprintf(
28+
'Failed to read content of file "%s".%s',
29+
$file,
30+
$error ? ' ' . $error['message'] : ''
31+
)
32+
);
3133
}
3234

3335
return $content;

0 commit comments

Comments
 (0)