11-uncaught.php 322 B

123456789101112
  1. <?php
  2. use React\EventLoop\Loop;
  3. // autoload for local project development or project installed as dependency for reactphp/reactphp
  4. (@include __DIR__ . '/../../vendor/autoload.php') || require __DIR__ . '/../../../../autoload.php';
  5. Loop::addTimer(10.0, function () {
  6. echo 'never';
  7. });
  8. throw new RuntimeException();