Skip to content

Commit 86814ea

Browse files
committed
build: debug build
1 parent fd69688 commit 86814ea

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Php.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ protected function convertMessage(string $message): string
157157

158158
protected function execute(string $file): array
159159
{
160-
$process = new Process([$this->getCli(), '-l -d display_errors=1', $file]);
160+
$process = new Process([$this->getCli(), '-d display_errors=1 -l', $file]);
161161
$process->run();
162162

163163
if ($process->isSuccessful()) {
@@ -168,7 +168,6 @@ protected function execute(string $file): array
168168
}
169169

170170
$output = $process->getOutput();
171-
\var_dump($output);
172171
if (!$output) {
173172
throw new \Exception('Could not check syntax', $process->getExitCode() ?: 0);
174173
}

0 commit comments

Comments
 (0)