Skip to content

Commit 9815bbb

Browse files
committed
PHPStan Pro: debug corrupted PHAR signature message
1 parent 77405e8 commit 9815bbb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Command/FixerApplication.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
use function fclose;
5050
use function fopen;
5151
use function fwrite;
52+
use function get_class;
5253
use function getenv;
5354
use function http_build_query;
5455
use function ini_get;
@@ -240,10 +241,11 @@ private function getFixerProcess(OutputInterface $output, int $serverPort): Proc
240241

241242
try {
242243
$phar = new Phar($pharPath);
243-
} catch (Throwable) {
244+
} catch (Throwable $e) {
244245
@unlink($pharPath);
245246
@unlink($infoPath);
246247
$output->writeln('<fg=red>PHPStan Pro PHAR signature is corrupted.</>');
248+
$output->writeln(sprintf('%s: %s', get_class($e), $e->getMessage()));
247249

248250
throw new FixerProcessException();
249251
}
@@ -252,6 +254,7 @@ private function getFixerProcess(OutputInterface $output, int $serverPort): Proc
252254
@unlink($pharPath);
253255
@unlink($infoPath);
254256
$output->writeln('<fg=red>PHPStan Pro PHAR signature is corrupted.</>');
257+
$output->writeln(sprintf('Wrong hash type: %s', $phar->getSignature()['hash_type']));
255258

256259
throw new FixerProcessException();
257260
}

0 commit comments

Comments
 (0)