shiracdn/vendor/react/promise/tests/fixtures/SimpleTestCancellable.php

14 lines
177 B
PHP

<?php
namespace React\Promise;
class SimpleTestCancellable
{
public $cancelCalled = false;
public function cancel()
{
$this->cancelCalled = true;
}
}