aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/xdebug_handler/xdebug_handler.rs
blob: d58b423713f531739674986a2c34fa54a911fb29 (plain)
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!()
    }
}