Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/fruitcake/../maennchen/../symfony/mailgun-mailer/../css-selector/../../../vendor/markbaker/./../hamcrest/../dflydev/./../paytm/../mews/../voku/../myclabs/../guzzlehttp/promises/src
الملفات الموجودة في هذا الـ Path:
.
..
AggregateException.php
CancellationException.php
Coroutine.php
Create.php
Each.php
EachPromise.php
FulfilledPromise.php
Is.php
Promise.php
PromiseInterface.php
PromisorInterface.php
RejectedPromise.php
RejectionException.php
TaskQueue.php
TaskQueueInterface.php
Utils.php

مشاهدة ملف: PromisorInterface.php

<?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;
}