blob: 0346d1019540b1699824d2f50d3cef677913ad00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#[derive(Debug)]
pub struct PhpExecutableFinder;
impl Default for PhpExecutableFinder {
fn default() -> Self {
Self::new()
}
}
impl PhpExecutableFinder {
pub fn new() -> Self {
todo!()
}
pub fn find(&self, _include_args: bool) -> Option<String> {
todo!()
}
pub fn find_arguments(&self) -> Vec<String> {
todo!()
}
}
|