File "PromiseAdapterInterface.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/react/promise/tests/PromiseAdapter/PromiseAdapterInterface.php
File size: 258 B (258 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php

namespace React\Promise\PromiseAdapter;

use React\Promise;

interface PromiseAdapterInterface
{
    public function promise();
    public function resolve();
    public function reject();
    public function notify();
    public function settle();
}