aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/tests/Timer/ExtLibevTimerTest.php
blob: 65e82bee0cc70fa14976e22103449762add410da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace React\Tests\EventLoop\Timer;

use React\EventLoop\ExtLibevLoop;

class ExtLibevTimerTest extends AbstractTimerTest
{
    public function createLoop()
    {
        if (!class_exists('libev\EventLoop')) {
            $this->markTestSkipped('libev tests skipped because ext-libev is not installed.');
        }

        return new ExtLibevLoop();
    }
}