Reformatting the Cancelable interface.

This commit is contained in:
Ilya Bakhlin 2021-12-28 19:46:12 +01:00
parent f75754f341
commit d7d97fc4bf

View file

@ -1,11 +1,17 @@
<?php declare(strict_types=1); <?php
declare(strict_types = 1);
namespace Chandler\Eventing\Events; namespace Chandler\Eventing\Events;
/**
* @package Chandler\Eventing\Events
*/
interface Cancelable interface Cancelable
{ {
protected $cancelled; protected $cancelled;
function cancel(): void; function cancel(): void;
function isCancelled(): bool; function isCancelled(): bool;
} }