Skip to content

Commit 11376ab

Browse files
committed
fix: don't run the php code
1 parent ad1aef8 commit 11376ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Php.php

Lines changed: 1 addition & 1 deletion
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(), '-d display_errors=1 -l', $file]);
160+
$process = new Process([$this->getCli(), '-d display_errors=1', '-l', $file]);
161161
$process->run();
162162

163163
if ($process->isSuccessful()) {

0 commit comments

Comments
 (0)