StreamSelectTimerTest.php 228 B

12345678910111213
  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. }