Skip to content

Commit 2a3fd2f

Browse files
committed
chore: reorder use statements
Refs: #456
1 parent 6989a08 commit 2a3fd2f

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/types/array.rs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
//! Represents an array in PHP. As all arrays in PHP are associative arrays,
22
//! they are represented by hash tables.
33
4+
use std::{
5+
collections::HashMap,
6+
convert::{TryFrom, TryInto},
7+
ffi::CString,
8+
fmt::{Debug, Display},
9+
iter::FromIterator,
10+
ptr,
11+
str::FromStr,
12+
};
13+
414
use crate::{
515
boxed::{ZBox, ZBoxable},
616
convert::{FromZval, IntoZval},
@@ -17,15 +27,6 @@ use crate::{
1727
flags::DataType,
1828
types::Zval,
1929
};
20-
use std::{
21-
collections::HashMap,
22-
convert::{TryFrom, TryInto},
23-
ffi::CString,
24-
fmt::{Debug, Display},
25-
iter::FromIterator,
26-
ptr,
27-
str::FromStr,
28-
};
2930

3031
/// A PHP hashtable.
3132
///

0 commit comments

Comments
 (0)