aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/tests/Timer/ExtLibeventTimerTest.php
blob: 9089b9a57a19a73099f621b29ff85ddccce36405 (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\ExtLibeventLoop;

class ExtLibeventTimerTest extends AbstractTimerTest
{
    public function createLoop()
    {
        if (!function_exists('event_base_new')) {
            $this->markTestSkipped('libevent tests skipped because ext-libevent is not installed.');
        }

        return new ExtLibeventLoop();
    }
}