blob: 0e5fc88e407c4eb44a4bb37eaaa224a5b9b67dd7 (
plain)
1
2
3
4
5
6
|
use crate::symfony::component::console::output::output_interface::OutputInterface;
pub trait ConsoleOutputInterface: OutputInterface {
fn get_error_output(&self) -> &dyn OutputInterface;
fn set_error_output(&mut self, error: Box<dyn OutputInterface>);
}
|