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

use crate::symfony::console::input::input_interface::InputInterface;

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