SimpleTestCancellable.php 204 B

1234567891011121314
  1. <?php
  2. namespace React\Promise;
  3. class SimpleTestCancellable
  4. {
  5. /** @var bool */
  6. public $cancelCalled = false;
  7. public function cancel(): void
  8. {
  9. $this->cancelCalled = true;
  10. }
  11. }