Subversion Repositories php-qbpwcf

Rev

Details | Last modification | View Log | RSS feed

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