aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-symfony-console/src/input/input_aware_interface.rs
blob: 1638b6c7dc52e68e324cb821bd197e51ef579900 (plain)
1
2
3
4
5
6
7
//! ref: composer/vendor/symfony/console/Input/InputAwareInterface.php

use crate::input::input_interface::InputInterface;

pub trait InputAwareInterface {
    fn set_input(&mut self, input: Box<dyn InputInterface>);
}