aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs
blob: a4b3d3ea968797aa2b7bffd7c6ace99030c61099 (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
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct CompletionInput;

impl CompletionInput {
    pub fn get_completion_type(&self) -> String {
        todo!()
    }

    pub fn get_completion_name(&self) -> Option<String> {
        todo!()
    }

    pub fn get_completion_value(&self) -> String {
        todo!()
    }

    pub fn must_suggest_option_values_for(&self, name: &str) -> bool {
        todo!()
    }

    pub fn must_suggest_argument_values_for(&self, name: &str) -> bool {
        todo!()
    }
}