Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 915 | Details | Compare with Previous | Last modification | View Log | RSS feed

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