1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/test/UvLoopTest.php
2017-03-10 22:20:28 +01:00

18 lines
276 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(): callable {
return function () {
return new UvLoop;
};
}
}