Skip to content

Commit 01fdd07

Browse files
committed
apply code style format
1 parent c785dce commit 01fdd07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/zval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ impl<'a> FromZvalMut<'a> for &'a [&'a Zval] {
724724

725725
fn from_zval_mut(zval: &'a mut Zval) -> Option<Self> {
726726
// Check if the input Zval is an array and convert it into a slice of references
727-
if let Some(a) = zval.array(){
727+
if let Some(a) = zval.array() {
728728
// Collect references to each element in the array
729729
let slice: Vec<&'a Zval> = a.values().collect();
730730
Some(Box::leak(slice.into_boxed_slice()))

0 commit comments

Comments
 (0)