blob: 9442d0823cf7d29c0cd3f7fea7fe60b9107b7ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! ref: composer/vendor/composer/xdebug-handler/src/XdebugHandler.php
#[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!()
}
}
|