Files
taome/vendor/react/promise/src/PromiseInterface.php
2020-10-07 10:37:15 +02:00

15 lines
320 B
PHP

<?php
namespace React\Promise;
interface PromiseInterface
{
/**
*
* The `$onProgress` argument is deprecated and should not be used anymore.
*
* @return PromiseInterface
*/
public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null);
}