diff options
Diffstat (limited to 'assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php')
-rwxr-xr-x | assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php b/assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php deleted file mode 100755 index c0f1593..0000000 --- a/assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellableThenable.php +++ /dev/null @@ -1,18 +0,0 @@ -<?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; - } -} |