Your IP : 216.73.216.95


Current Path : /var/test/www/storage/vendor/react/promise/tests/fixtures/
Upload File :
Current File : /var/test/www/storage/vendor/react/promise/tests/fixtures/SimpleTestCancellable.php

<?php

namespace React\Promise;

class SimpleTestCancellable
{
    public $cancelCalled = false;

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