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