Skip to content

Commit

Permalink
dd it
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow committed Feb 3, 2024
1 parent f9092a1 commit bb9ef3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Util/TemplateLinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public function lintPhpTemplate(string|array $templateFilePath): void

$process = Process::fromShellCommandline(sprintf('PHP_CS_FIXER_IGNORE_ENV=1 %s%s --config=%s --using-cache=no fix %s', $cmdPrefix, $this->phpCsFixerBinaryPath, $this->phpCsFixerConfigPath, $filePath));

$process->run();
$stat = $process->run();

dump(['output' => $process->getOutput()]);
dd($stat, ['output' => $process->getOutput(), 'err' => $process->getErrorOutput(), 'exit' => $process->getExitCode()]);
}
}

Expand Down

0 comments on commit bb9ef3a

Please sign in to comment.