1
0
mirror of https://github.com/danog/amp.git synced 2024-12-13 09:57:25 +01:00
amp/test/UvReactorTest.php
2014-06-11 12:33:15 -04:00

16 lines
322 B
PHP
Executable File

<?php
namespace Alert;
class UvReactorTest extends ReactorTest {
protected function getReactor() {
if (extension_loaded('uv')) {
return new UvReactor($new = TRUE);
} else {
$this->markTestSkipped(
'php-uv extension not loaded'
);
}
}
}