blob: be99e8c1542f407a9dc61c1aa8f36c37c6b79630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[derive(Debug)]
pub struct PhpExecutableFinder;
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!()
}
}
|