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\StreamSelectLoop;
6
 
7
class StreamSelectTimerTest extends AbstractTimerTest
8
{
9
    public function createLoop()
10
    {
11
        return new StreamSelectLoop();
12
    }
13
}