ExtEvLoopTest.php 355 B

1234567891011121314151617
  1. <?php
  2. namespace React\Tests\EventLoop;
  3. use React\EventLoop\ExtEvLoop;
  4. class ExtEvLoopTest extends AbstractLoopTest
  5. {
  6. public function createLoop()
  7. {
  8. if (!class_exists('EvLoop')) {
  9. $this->markTestSkipped('ExtEvLoop tests skipped because ext-ev extension is not installed.');
  10. }
  11. return new ExtEvLoop();
  12. }
  13. }