blob: cfd1bef3a3d99698b6a85928e9875b719b033e3f (
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
|
//! ref: composer/vendor/symfony/process/ExecutableFinder.php
#[derive(Debug)]
pub struct ExecutableFinder;
impl Default for ExecutableFinder {
fn default() -> Self {
Self::new()
}
}
impl ExecutableFinder {
pub fn new() -> Self {
todo!()
}
pub fn add_suffix(&mut self, _suffix: &str) {
todo!()
}
pub fn find(&self, _name: &str, _default: Option<&str>, _dirs: &[String]) -> Option<String> {
todo!()
}
}
|