1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/vendor/react/event-loop/tests/Timer/ExtUvTimerTest.php
2021-10-05 13:04:32 -03:00

17 lines
354 B
PHP

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