File "PromiseInterface.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/react/promise/src/PromiseInterface.php
File
size: 226 B (226 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
namespace React\Promise;
interface PromiseInterface
{
/**
* @return PromiseInterface
*/
public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null);
}