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 a9f6ab2 commit faf98a2Copy full SHA for faf98a2
helpers/cli.php
@@ -134,10 +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
+ var_dump(ob_get_clean());
142
// ob_end_clean();
143
144
return $succeeded;
0 commit comments