blob: 65eae308038b6149f7201da6e6408c337b971c00 (
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/PhpExecutableFinder.php
#[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!()
}
}
|