aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php
blob: cfe1d7d3f232ceb6bc3bcc1f07f33e9c66c7ee80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace React\Tests\EventLoop\Timer;

use React\EventLoop\StreamSelectLoop;

class StreamSelectTimerTest extends AbstractTimerTest
{
    public function createLoop()
    {
        return new StreamSelectLoop();
    }
}