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

18 lines
276 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\EvLoop;
use Amp\Test\LoopTest;
/**
* @requires extension ev
*/
class EvLoopLoopTest extends LoopTest {
public function getFactory(): callable {
return function () {
return new EvLoop;
};
}
}