ExtEventTimerTest.php 368 B

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