diff options
Diffstat (limited to 'assets/php/vendor/react/event-loop/examples/03-ticks.php')
-rwxr-xr-x | assets/php/vendor/react/event-loop/examples/03-ticks.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/assets/php/vendor/react/event-loop/examples/03-ticks.php b/assets/php/vendor/react/event-loop/examples/03-ticks.php deleted file mode 100755 index 3f36c6d..0000000 --- a/assets/php/vendor/react/event-loop/examples/03-ticks.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -require __DIR__ . '/../vendor/autoload.php'; - -$loop = React\EventLoop\Factory::create(); - -$loop->futureTick(function () { - echo 'b'; -}); -$loop->futureTick(function () { - echo 'c'; -}); -echo 'a'; - -$loop->run(); |