(
_request_id: Option<i64>, span: Box<dyn Any>, _execute_data: &mut ExecuteData,
_return_value: &mut ZVal,
)
| 354 | } |
| 355 | |
| 356 | fn after_hook( |
| 357 | _request_id: Option<i64>, span: Box<dyn Any>, _execute_data: &mut ExecuteData, |
| 358 | _return_value: &mut ZVal, |
| 359 | ) -> crate::Result<()> { |
| 360 | if span.downcast_ref::<()>().is_some() { |
| 361 | return Ok(()); |
| 362 | } |
| 363 | |
| 364 | let mut span = span.downcast::<Span>().unwrap(); |
| 365 | |
| 366 | log_exception(&mut *span); |
| 367 | |
| 368 | Ok(()) |
| 369 | } |
nothing calls this directly
no test coverage detected