1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#[derive(Debug)] pub struct XdebugHandler; impl XdebugHandler { pub fn is_xdebug_active() -> bool { todo!() } pub fn get_skipped_version() -> Option<String> { todo!() } pub fn get_all_ini_files() -> Vec<String> { todo!() } }