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 be82b4f commit fbb04c5Copy full SHA for fbb04c5
src/PatternLab/Watcher.php
@@ -279,24 +279,11 @@ public function watch($options = array()) {
279
// taking out the garbage. basically killing mustache after each run.
280
if (gc_enabled()) gc_collect_cycles();
281
282
- // output anything the reload server might send our way
283
- // DEPRECATED
284
- /*
285
- if ($reload) {
286
- $output = fgets($fp, 100);
287
- if ($output != "\n") print $output;
288
- }
289
- */
290
-
291
// pause for .05 seconds to give the CPU a rest
292
usleep(50000);
293
294
}
295
296
- // close the auto-reload process, this shouldn't do anything
297
298
- // fclose($fp);
299
300
301
302
/**
0 commit comments