We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416647d commit a2d83a4Copy full SHA for a2d83a4
generator/src/GenerateCommand.php
@@ -95,6 +95,7 @@ private function rmGenerated(): void
95
private function runCsFix(OutputInterface $output): void
96
{
97
$process = new Process('vendor/bin/phpcbf', __DIR__.'/../..');
98
+ $process->setTimeout(600);
99
$process->run(function ($type, $buffer) use ($output) {
100
if (Process::ERR === $type) {
101
echo $output->write('<error>'.$buffer.'</error>');
0 commit comments