Skip to content

Commit 281d82f

Browse files
committed
Added TryFrom implementation for HashMap
1 parent d4c6aa2 commit 281d82f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/php/types/zval.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,10 +386,9 @@ try_from_zval!(usize, long);
386386
try_from_zval!(isize, long);
387387

388388
try_from_zval!(f64, double);
389-
390389
try_from_zval!(bool, bool);
391-
392390
try_from_zval!(String, string);
391+
try_from_zval!(ZendHashTable, array);
393392

394393
/// Implements the trait `Into<T>` on Zval for a given type.
395394
#[macro_use]

0 commit comments

Comments
 (0)