mirror of
https://github.com/danog/amp.git
synced 2025-01-19 11:52:32 +01:00
12 lines
184 B
PHP
12 lines
184 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Test;
|
||
|
|
||
|
use Amp\LibeventReactor;
|
||
|
|
||
|
class LibeventReactorTest extends ReactorTest {
|
||
|
protected function getReactor() {
|
||
|
return new LibeventReactor;
|
||
|
}
|
||
|
}
|