You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 rivejä
243 B

  1. <?php
  2. namespace GuzzleHttp\Promise;
  3. /**
  4. * Interface used with classes that return a promise.
  5. */
  6. interface PromisorInterface
  7. {
  8. /**
  9. * Returns a promise.
  10. *
  11. * @return PromiseInterface
  12. */
  13. public function promise();
  14. }