summaryrefslogtreecommitdiffstats
path: root/vendor/react/promise/src/PromisorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/react/promise/src/PromisorInterface.php')
-rw-r--r--vendor/react/promise/src/PromisorInterface.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/react/promise/src/PromisorInterface.php b/vendor/react/promise/src/PromisorInterface.php
new file mode 100644
index 0000000..bd64400
--- /dev/null
+++ b/vendor/react/promise/src/PromisorInterface.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace React\Promise;
+
+interface PromisorInterface
+{
+ /**
+ * Returns the promise of the deferred.
+ *
+ * @return PromiseInterface
+ */
+ public function promise();
+}