aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/event_dispatcher/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/event_dispatcher/event.rs')
-rw-r--r--crates/shirabe/src/event_dispatcher/event.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/event_dispatcher/event.rs b/crates/shirabe/src/event_dispatcher/event.rs
index 7075ada0..3adb7405 100644
--- a/crates/shirabe/src/event_dispatcher/event.rs
+++ b/crates/shirabe/src/event_dispatcher/event.rs
@@ -5,9 +5,9 @@ use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct Event {
- pub(crate) name: String,
- pub(crate) args: Vec<String>,
- pub(crate) flags: IndexMap<String, PhpMixed>,
+ name: String,
+ args: Vec<String>,
+ flags: IndexMap<String, PhpMixed>,
propagation_stopped: bool,
}