mirror of
https://github.com/danog/amp.git
synced 2024-12-13 09:57:25 +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;
|
|
}
|
|
}
|