chandler/chandler/Eventing/Events/Cancelable.php

12 lines
192 B
PHP

<?php declare(strict_types=1);
namespace Chandler\Eventing\Events;
interface Cancelable
{
protected $cancelled;
function cancel(): void;
function isCancelled(): bool;
}