Skip to content

Commit ed03955

Browse files
committed
Merge branch 'promisor-interface'
* promisor-interface: Add PromisorInterface for promise-providing objects
2 parents 8207291 + 350b379 commit ed03955

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
CHANGELOG
22
=========
33

4+
* 1.0.3 (2012-11-17)
5+
6+
* Add `PromisorInterface` for objects that have a `promise()` method.
47

58
* 1.0.2 (2012-11-14)
69

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Table of Contents
2626
* [When::reduce()](#whenreduce)
2727
* [When::resolve()](#whenresolve)
2828
* [When::reject()](#whenreject)
29+
* [Promisor](#promisor)
2930
4. [Examples](#examples)
3031
* [How to use Deferred](#how-to-use-deferred)
3132
* [How Promise forwarding works](#how-promise-forwarding-works)
@@ -275,6 +276,12 @@ This can be useful in situations where you need to reject a Promise without
275276
throwing an exception. For example, it allows you to propagate a rejection with
276277
the value of another Promise.
277278

279+
### Promisor
280+
281+
The `React\Promise\PromisorInterface` provides a common interface for objects
282+
that provide a promise. `React\Promise\Deferred` implements it, but since it
283+
is part of the public API anyone can implement it.
284+
278285
Examples
279286
--------
280287

src/React/Promise/Deferred.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace React\Promise;
44

5-
class Deferred implements PromiseInterface, ResolverInterface
5+
class Deferred implements PromiseInterface, ResolverInterface, PromisorInterface
66
{
77
private $completed;
88
private $promise;
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace React\Promise;
4+
5+
interface PromisorInterface
6+
{
7+
public function promise();
8+
}

0 commit comments

Comments
 (0)