eric-chau/jarvis

View on GitHub
src/Skill/EventBroadcaster/EventInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Jarvis\Skill\EventBroadcaster;

/**
 * @author Eric Chau <eriic.chau@gmail.com>
 */
interface EventInterface
{
    /**
     * @return boolean
     */
    public function isPropagationStopped(): bool;
}