Skip to content

Commit e3c3a92

Browse files
author
Aleksandr Startsev
committed
fix: Add path to hashmap
1 parent 2abe85f commit e3c3a92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/macros/src/interface.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ impl ToTokens for InterfaceData<'_> {
9898
::ext_php_rs::internal::class::PhpClassImplCollector::<Self>::default().get_constants()
9999
}
100100

101-
fn get_properties<'a>() -> std::collections::HashMap<&'static str, ::ext_php_rs::internal::property::PropertyInfo<'a, Self>> {
102-
HashMap::new()
101+
fn get_properties<'a>() -> ::std::collections::HashMap<&'static str, ::ext_php_rs::internal::property::PropertyInfo<'a, Self>> {
102+
::std::collections::HashMap::new()
103103
}
104104
}
105105

0 commit comments

Comments
 (0)