Hello, I have a question. Why the code blow run with 100% CPU, any question with the code? ``` require __DIR__ . '/../vendor/autoload.php'; use React\EventLoop\Factory; $loop = Factory::create(); $loop->addSignal(SIGTERM, function () { }); $loop->run(); ```