1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/test/Loop/EvLoopTest.php

17 lines
257 B
PHP

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