mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
17 lines
354 B
PHP
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();
|
|
}
|
|
}
|