We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d668b2 commit 7b1ad32Copy full SHA for 7b1ad32
1 file changed
packages/php-ext-wp-mysql-parser/src/lib.rs
@@ -1276,8 +1276,9 @@ unsafe extern "C" fn ast_get_gc(
1276
) -> *mut HashTable {
1277
let buf = zend_get_gc_buffer_create();
1278
1279
- if let Some(ast) = ext_php_rs::types::ZendClassObject::<WpMySqlNativeAst>::from_zend_obj(&*object)
1280
- .and_then(|z| z.obj.as_ref())
+ if let Some(ast) =
+ ext_php_rs::types::ZendClassObject::<WpMySqlNativeAst>::from_zend_obj(&*object)
1281
+ .and_then(|z| z.obj.as_ref())
1282
{
1283
if let Ok(cache) = ast.node_cache.try_borrow() {
1284
for boxed in cache.values() {
0 commit comments