LibEventTimerTest.php 378 B

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