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