SimpleTestCancellable.php 177 Bytes
<?php

namespace React\Promise;

class SimpleTestCancellable
{
    public $cancelCalled = false;

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