mirror of
https://github.com/danog/amp.git
synced 2025-01-07 21:48:28 +01:00
12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp\PrivateFuture;
|
|
|
|
class PrivateFutureTest extends PromisorTest {
|
|
protected function getPromisor() {
|
|
return new PrivateFuture;
|
|
}
|
|
}
|