Your IP : 216.73.216.95


Current Path : /var/www/storage2/vendor/react/promise/tests/fixtures/
Upload File :
Current File : /var/www/storage2/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php

<?php

namespace React\Promise;

class SimpleTestCancellableThenable
{
    public $cancelCalled = false;

    public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null)
    {
        return new self();
    }

    public function cancel()
    {
        $this->cancelCalled = true;
    }
}