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 73fdb30 commit a9f6ab2Copy full SHA for a9f6ab2
helpers/cli.php
@@ -134,11 +134,11 @@ function runAnnotate(string $enum, bool $force = false): bool
134
// Since we are writing on the disk, the enum in memory might get out of sync.
135
// To ensure that the annotations reflect the current content of such enum,
136
// we spin a new process to load in memory the latest state of the enum.
137
- ob_start();
+ // ob_start();
138
139
$succeeded = cli("annotate \"{$enum}\"" . ($force ? ' --force' : ''));
140
141
- ob_end_clean();
+ // ob_end_clean();
142
143
return $succeeded;
144
}
0 commit comments