We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b71d5a commit d4fc01bCopy full SHA for d4fc01b
src/zend/class.rs
@@ -27,7 +27,9 @@ impl ClassEntry {
27
ExecutorGlobals::get().class_table()?;
28
let mut name = ZendStr::new(name, false);
29
30
- unsafe { crate::ffi::zend_lookup_class_ex(&raw mut *name, std::ptr::null_mut(), 0).as_ref() }
+ unsafe {
31
+ crate::ffi::zend_lookup_class_ex(&raw mut *name, std::ptr::null_mut(), 0).as_ref()
32
+ }
33
}
34
35
/// Creates a new [`ZendObject`], returned inside an [`ZBox<ZendObject>`]
0 commit comments