aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/tests/Timer/ExtEventTimerTest.php
blob: a7a6d005dbbb6ea117827187b7b9d8b415c383b9 (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\ExtEventLoop;

class ExtEventTimerTest extends AbstractTimerTest
{
    public function createLoop()
    {
        if (!extension_loaded('event')) {
            $this->markTestSkipped('ext-event tests skipped because ext-event is not installed.');
        }

        return new ExtEventLoop();
    }
}