Skip to content

Commit 5edbf42

Browse files
committed
fix unused import
1 parent 7618d9a commit 5edbf42

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/src/classes.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use phper::{
1515
},
1616
functions::Argument,
1717
modules::Module,
18-
types::ReturnTypeHint,
1918
values::ZVal,
2019
};
2120
use std::{collections::HashMap, convert::Infallible};
@@ -205,6 +204,8 @@ fn integrate_static_props(module: &mut Module) {
205204
#[cfg(phper_major_version = "8")]
206205
fn integrate_stringable(module: &mut Module) {
207206
use phper::functions::ReturnType;
207+
use phper::types::ReturnTypeHint;
208+
208209

209210
let mut cls = ClassEntity::new(r"IntegrationTest\FooString");
210211
cls.implements(|| ClassEntry::from_globals("Stringable").unwrap());

0 commit comments

Comments
 (0)