first commit
This commit is contained in:
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;
|
||||
}
|
Reference in New Issue
Block a user