1
0
mirror of https://github.com/danog/amp.git synced 2025-01-06 13:08:22 +01:00
amp/test/PrivateFutureTest.php

12 lines
180 B
PHP
Raw Normal View History

2014-09-22 22:47:48 +02:00
<?php
2014-09-23 04:38:32 +02:00
namespace Amp\Test;
2014-09-22 22:47:48 +02:00
2014-09-23 04:38:32 +02:00
use Amp\PrivateFuture;
2014-09-22 22:47:48 +02:00
2015-03-16 20:04:01 +01:00
class PrivateFutureTest extends PromisorTest {
protected function getPromisor() {
return new PrivateFuture;
2015-02-06 05:44:11 +01:00
}
2014-09-22 22:47:48 +02:00
}