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

class ExtEvTimerTest extends AbstractTimerTest
{
    public function createLoop()
    {
        if (!class_exists('EvLoop')) {
            $this->markTestSkipped('ExtEvLoop tests skipped because ext-ev extension is not installed.');
        }

        return new ExtEvLoop();
    }
}