Fixing the Cancelable interface.

This commit is contained in:
Ilya Bakhlin 2021-12-28 19:47:27 +01:00
parent d7d97fc4bf
commit 336000b8d4

View file

@ -9,9 +9,7 @@ namespace Chandler\Eventing\Events;
*/ */
interface Cancelable interface Cancelable
{ {
protected $cancelled; public function cancel(): void;
function cancel(): void; public function isCancelled(): bool;
function isCancelled(): bool;
} }