mirror of
https://github.com/danog/amp.git
synced 2024-11-30 04:29:08 +01:00
18 lines
266 B
PHP
18 lines
266 B
PHP
<?php
|
|
|
|
namespace Amp\Test\Loop;
|
|
|
|
use Amp\Loop\UvLoop;
|
|
use Amp\Test\LoopTest;
|
|
|
|
/**
|
|
* @requires extension uv
|
|
*/
|
|
class UvLoopLoopTest extends LoopTest {
|
|
public function getFactory() {
|
|
return function () {
|
|
return new UvLoop;
|
|
};
|
|
}
|
|
}
|