mirror of
https://github.com/danog/amp.git
synced 2024-12-02 17:37:50 +01:00
17 lines
257 B
PHP
17 lines
257 B
PHP
<?php
|
|
|
|
namespace Amp\Test\Loop;
|
|
|
|
use Amp\Loop\UvDriver;
|
|
|
|
/**
|
|
* @requires extension uv
|
|
*/
|
|
class UvDriverTest extends DriverTest {
|
|
public function getFactory(): callable {
|
|
return function () {
|
|
return new UvDriver;
|
|
};
|
|
}
|
|
}
|