Skip to content

Commit 8d93eeb

Browse files
Fix cs (#55)
1 parent c6a6940 commit 8d93eeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/TypeScriptBinaryFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ private function downloadAndExtract(string $binaryName): void
130130
if (200 !== $statusCode = $response->getStatusCode()) {
131131
$exceptionMessage = \sprintf('Could not download SWC binary from "%s" (request responded with %d).', $url, $statusCode);
132132
if (404 === $statusCode) {
133-
$exceptionMessage .= PHP_EOL.\sprintf('Check that the version "%s" defined in "sensiolabs_typescript.swc_version" exists.', $this->swcVersion);
133+
$exceptionMessage .= \PHP_EOL.\sprintf('Check that the version "%s" defined in "sensiolabs_typescript.swc_version" exists.', $this->swcVersion);
134134
}
135135
throw new \Exception($exceptionMessage);
136136
}

0 commit comments

Comments
 (0)