diff options
Diffstat (limited to 'assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php')
-rw-r--r-- | assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php b/assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php new file mode 100644 index 0000000..cfe1d7d --- /dev/null +++ b/assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php @@ -0,0 +1,13 @@ +<?php + +namespace React\Tests\EventLoop\Timer; + +use React\EventLoop\StreamSelectLoop; + +class StreamSelectTimerTest extends AbstractTimerTest +{ + public function createLoop() + { + return new StreamSelectLoop(); + } +} |