aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/input/array_input.rs
blob: 68c589ea73fa01cbf3205b00988fc77a90a1b58e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use crate::symfony::console::input::input_interface::InputInterface;
use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct ArrayInput;

impl ArrayInput {
    pub fn new(parameters: IndexMap<String, PhpMixed>) -> Self {
        todo!()
    }
}

impl InputInterface for ArrayInput {
    fn get_first_argument(&self) -> Option<String> {
        todo!()
    }
    fn has_parameter_option(&self, _values: &[&str], _only_params: bool) -> bool {
        todo!()
    }
    fn get_parameter_option(
        &self,
        _values: &[&str],
        _default: PhpMixed,
        _only_params: bool,
    ) -> PhpMixed {
        todo!()
    }
    fn validate(&self) -> anyhow::Result<()> {
        todo!()
    }
    fn get_arguments(&self) -> IndexMap<String, PhpMixed> {
        todo!()
    }
    fn get_argument(&self, _name: &str) -> PhpMixed {
        todo!()
    }
    fn set_argument(&mut self, _name: &str, _value: PhpMixed) -> anyhow::Result<()> {
        todo!()
    }
    fn has_argument(&self, _name: &str) -> bool {
        todo!()
    }
    fn get_options(&self) -> IndexMap<String, PhpMixed> {
        todo!()
    }
    fn get_option(&self, _name: &str) -> PhpMixed {
        todo!()
    }
    fn set_option(&mut self, _name: &str, _value: PhpMixed) -> anyhow::Result<()> {
        todo!()
    }
    fn has_option(&self, _name: &str) -> bool {
        todo!()
    }
    fn is_interactive(&self) -> bool {
        todo!()
    }
    fn set_interactive(&mut self, _interactive: bool) {
        todo!()
    }
}