Current Path : /var/www/storage/vendor/react/promise/tests/fixtures/ |
Current File : /var/www/storage/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; } }