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