blob: f2d03182f9fc194ccf5ea07e36447c0d6656a00e (
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
29
30
31
32
|
use crate::symfony::console::input::InputArgument;
use crate::symfony::console::input::InputOption;
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct InputDefinition;
impl InputDefinition {
pub fn new(_definition: Vec<PhpMixed>) -> Self {
todo!()
}
pub fn add_argument(&mut self, _argument: InputArgument) {
todo!()
}
pub fn add_option(&mut self, _option: InputOption) {
todo!()
}
pub fn has_option(&self, _name: &str) -> bool {
todo!()
}
pub fn get_option(&self, _name: &str) -> anyhow::Result<PhpMixed> {
todo!()
}
pub fn has_argument(&self, _name: &str) -> bool {
todo!()
}
}
|