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

18 lines
361 B
PHP
Executable File

<?php
namespace React\Tests\EventLoop\Timer;
use React\EventLoop\LibEvLoop;
class LibEvTimerTest extends AbstractTimerTest
{
public function createLoop()
{
if (!class_exists('libev\EventLoop')) {
$this->markTestSkipped('libev tests skipped because ext-libev is not installed.');
}
return new LibEvLoop();
}
}