aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs b/crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs
new file mode 100644
index 0000000..a4b3d3e
--- /dev/null
+++ b/crates/shirabe-external-packages/src/symfony/component/console/completion/completion_input.rs
@@ -0,0 +1,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!()
+ }
+}