Files
instafeed/vendor/react/event-loop/tests/Timer/StreamSelectTimerTest.php
2022-10-23 01:39:27 +02:00

14 lines
228 B
PHP
Executable File

<?php
namespace React\Tests\EventLoop\Timer;
use React\EventLoop\StreamSelectLoop;
class StreamSelectTimerTest extends AbstractTimerTest
{
public function createLoop()
{
return new StreamSelectLoop();
}
}