aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/event/console_event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console/event/console_event.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/event/console_event.rs42
1 files changed, 0 insertions, 42 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/event/console_event.rs b/crates/shirabe-external-packages/src/symfony/console/event/console_event.rs
deleted file mode 100644
index cade304..0000000
--- a/crates/shirabe-external-packages/src/symfony/console/event/console_event.rs
+++ /dev/null
@@ -1,42 +0,0 @@
-//! ref: composer/vendor/symfony/console/Event/ConsoleEvent.php
-
-use crate::symfony::console::command::command::Command;
-use crate::symfony::console::input::input_interface::InputInterface;
-use crate::symfony::console::output::output_interface::OutputInterface;
-use crate::symfony::contracts::event_dispatcher::event::Event;
-
-/// Allows to inspect input and output of a command.
-#[derive(Debug)]
-pub struct ConsoleEvent {
- inner: Event,
- pub(crate) command: Option<Box<dyn Command>>,
- input: Box<dyn InputInterface>,
- output: Box<dyn OutputInterface>,
-}
-
-impl ConsoleEvent {
- pub fn new(
- command: Option<Box<dyn Command>>,
- input: Box<dyn InputInterface>,
- output: Box<dyn OutputInterface>,
- ) -> Self {
- Self {
- inner: Event,
- command,
- input,
- output,
- }
- }
-
- pub fn get_command(&self) -> Option<&dyn Command> {
- self.command.as_deref()
- }
-
- pub fn get_input(&self) -> &dyn InputInterface {
- self.input.as_ref()
- }
-
- pub fn get_output(&self) -> &dyn OutputInterface {
- self.output.as_ref()
- }
-}