This commit is contained in:
Philipp Lang 2022-11-04 15:44:04 +01:00
parent e002575036
commit 5826c455a7
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ class CompilerException extends Exception
{ {
public string $output; public string $output;
/**
* @param array<int, string> $output
*/
public function setOutput(array $output): self public function setOutput(array $output): self
{ {
$this->output = implode("\n", $output); $this->output = implode("\n", $output);