mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
17 lines
370 B
PHP
17 lines
370 B
PHP
<?php
|
|
|
|
namespace React\Tests\EventLoop\Timer;
|
|
|
|
use React\EventLoop\ExtLibevLoop;
|
|
|
|
class ExtLibevTimerTest extends AbstractTimerTest
|
|
{
|
|
public function createLoop()
|
|
{
|
|
if (!class_exists('libev\EventLoop')) {
|
|
$this->markTestSkipped('libev tests skipped because ext-libev is not installed.');
|
|
}
|
|
|
|
return new ExtLibevLoop();
|
|
}
|
|
}
|