Skip to content

Commit 0b95634

Browse files
committed
Symfony formatting tags should not be here
1 parent aa92113 commit 0b95634

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Parallel/ParallelAnalyser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public function analyse(
295295
return;
296296
}
297297
$internalErrors[] = new InternalError(sprintf(
298-
"<error>Child process error</error>: %s: %s\n%s\n",
298+
"Child process error: %s: %s\n%s\n",
299299
$memoryLimitMessage,
300300
ini_get('memory_limit'),
301301
'Increase your memory limit in php.ini or run PHPStan with --memory-limit CLI option.',
@@ -304,7 +304,7 @@ public function analyse(
304304
return;
305305
}
306306

307-
$internalErrors[] = new InternalError(sprintf('<error>Child process error</error> (exit code %d): %s', $exitCode, $output), 'running parallel worker', [], null);
307+
$internalErrors[] = new InternalError(sprintf('Child process error (exit code %d): %s', $exitCode, $output), 'running parallel worker', [], null, true);
308308
$internalErrorsCount++;
309309
});
310310
$this->processPool->attachProcess($processIdentifier, $process);

0 commit comments

Comments
 (0)