aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/promise/tests/fixtures/SimpleTestCancellable.php
blob: f232a68f22f3ee8c5546eec19c448e4c89f33f3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace React\Promise;

class SimpleTestCancellable
{
    public $cancelCalled = false;

    public function cancel()
    {
        $this->cancelCalled = true;
    }
}