ExtUvTimerTest.php 354 B

1234567891011121314151617
  1. <?php
  2. namespace React\Tests\EventLoop\Timer;
  3. use React\EventLoop\ExtUvLoop;
  4. class ExtUvTimerTest extends AbstractTimerTest
  5. {
  6. public function createLoop()
  7. {
  8. if (!function_exists('uv_loop_new')) {
  9. $this->markTestSkipped('uv tests skipped because ext-uv is not installed.');
  10. }
  11. return new ExtUvLoop();
  12. }
  13. }