aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-08 02:23:31 +0900
committernsfisis <nsfisis@gmail.com>2026-06-08 02:23:31 +0900
commit06368584a9277022d9cfc42d22c37f4cc6e580f8 (patch)
treea210e77273316ce94530391ea4e6dc4ee60b42ea /crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs
parent318ea948f5932dfa7942081a269d62fd7161a9bf (diff)
downloadphp-shirabe-06368584a9277022d9cfc42d22c37f4cc6e580f8.tar.gz
php-shirabe-06368584a9277022d9cfc42d22c37f4cc6e580f8.tar.zst
php-shirabe-06368584a9277022d9cfc42d22c37f4cc6e580f8.zip
refactor(external-packages): drop component segment from symfony paths
Align the Symfony namespace mapping with the documented convention (symfony::component::X -> symfony::X) and remove now-unused console stub files. Update all import paths across the workspace. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs69
1 files changed, 0 insertions, 69 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs b/crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs
deleted file mode 100644
index 86c982d..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/input/array_input.rs
+++ /dev/null
@@ -1,69 +0,0 @@
-use crate::symfony::component::console::input::InputDefinition;
-use crate::symfony::component::console::input::InputInterface;
-use indexmap::IndexMap;
-use shirabe_php_shim::PhpMixed;
-
-#[derive(Debug)]
-pub struct ArrayInput;
-
-impl ArrayInput {
- pub fn new(
- _parameters: IndexMap<String, PhpMixed>,
- _definition: Option<InputDefinition>,
- ) -> 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 bind(&mut self, _definition: &InputDefinition) -> anyhow::Result<()> {
- 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!()
- }
-}