blob: 01f8eb7851d5199b7f05c8cfed1bf26d15e11b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//! ref: composer/vendor/composer/xdebug-handler/src/XdebugHandler.php
#[derive(Debug)]
pub struct XdebugHandler;
impl XdebugHandler {
pub fn is_xdebug_active() -> bool {
// TODO(php-runtime)
false
}
pub fn get_skipped_version() -> Option<String> {
// TODO(php-runtime)
// The restart-to-disable-xdebug mechanism is not ported (`is_xdebug_active` is
// hardcoded `false`), so a restart never happens and `self::$skipped` stays at
// its PHP default of `""`.
Some(String::new())
}
pub fn get_all_ini_files() -> Vec<String> {
// TODO(php-runtime)
// No XdebugHandler is ever constructed (`self::$name` stays null) so the
// COMPOSER_ORIG_INIS env lookup is skipped, and without a PHP runtime
// `php_ini_loaded_file()` is `false` and `php_ini_scanned_files()` is `false`,
// so PHP would return `[(string) false]` = `[""]`.
vec![String::new()]
}
}
|