mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
12 lines
178 B
PHP
12 lines
178 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp\NativeReactor;
|
|
|
|
class NativeReactorTest extends ReactorTest {
|
|
protected function getReactor() {
|
|
return new NativeReactor;
|
|
}
|
|
}
|