aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/exception
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/exception
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/exception')
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/exception/command_not_found_exception.rs13
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/exception/exception_interface.rs1
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/exception/invalid_argument_exception.rs13
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/console/exception/mod.rs7
4 files changed, 0 insertions, 34 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/exception/command_not_found_exception.rs b/crates/shirabe-external-packages/src/symfony/component/console/exception/command_not_found_exception.rs
deleted file mode 100644
index f1ed60b..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/exception/command_not_found_exception.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-#[derive(Debug)]
-pub struct CommandNotFoundException {
- pub message: String,
- pub code: i64,
-}
-
-impl std::fmt::Display for CommandNotFoundException {
- fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "{}", self.message)
- }
-}
-
-impl std::error::Error for CommandNotFoundException {}
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/exception/exception_interface.rs b/crates/shirabe-external-packages/src/symfony/component/console/exception/exception_interface.rs
deleted file mode 100644
index 3c42009..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/exception/exception_interface.rs
+++ /dev/null
@@ -1 +0,0 @@
-pub trait ExceptionInterface: std::error::Error {}
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/exception/invalid_argument_exception.rs b/crates/shirabe-external-packages/src/symfony/component/console/exception/invalid_argument_exception.rs
deleted file mode 100644
index 658ed8c..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/exception/invalid_argument_exception.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-#[derive(Debug)]
-pub struct InvalidArgumentException {
- pub message: String,
- pub code: i64,
-}
-
-impl std::fmt::Display for InvalidArgumentException {
- fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "{}", self.message)
- }
-}
-
-impl std::error::Error for InvalidArgumentException {}
diff --git a/crates/shirabe-external-packages/src/symfony/component/console/exception/mod.rs b/crates/shirabe-external-packages/src/symfony/component/console/exception/mod.rs
deleted file mode 100644
index 25750a1..0000000
--- a/crates/shirabe-external-packages/src/symfony/component/console/exception/mod.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-pub mod command_not_found_exception;
-pub mod exception_interface;
-pub mod invalid_argument_exception;
-
-pub use command_not_found_exception::*;
-pub use exception_interface::*;
-pub use invalid_argument_exception::*;