aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/contracts/event_dispatcher/event_dispatcher_interface.rs
blob: f09b264c1dcf84c16f3fc5e15ebb4189c1341bed (plain)
1
2
3
4
5
6
use shirabe_php_shim::PhpMixed;

/// Mirror of PSR-14 / Symfony's `EventDispatcherInterface`.
pub trait EventDispatcherInterface: std::fmt::Debug {
    fn dispatch(&self, event: PhpMixed, event_name: &str) -> PhpMixed;
}