v1.0.0
This commit is contained in:
commit
27aae99d99
2996 changed files with 130406 additions and 0 deletions
16
vendor/guzzlehttp/promises/src/PromisorInterface.php
vendored
Normal file
16
vendor/guzzlehttp/promises/src/PromisorInterface.php
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace GuzzleHttp\Promise;
|
||||
|
||||
/**
|
||||
* Interface used with classes that return a promise.
|
||||
*/
|
||||
interface PromisorInterface
|
||||
{
|
||||
/**
|
||||
* Returns a promise.
|
||||
*/
|
||||
public function promise(): PromiseInterface;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue