StreamSelectTimerTest.php 228 B

1234567891011121314
  1. <?php
  2. namespace React\Tests\EventLoop\Timer;
  3. use React\EventLoop\StreamSelectLoop;
  4. class StreamSelectTimerTest extends AbstractTimerTest
  5. {
  6. public function createLoop()
  7. {
  8. return new StreamSelectLoop();
  9. }
  10. }