blob: 38b02cecaa02f59f3d74424b1cd7570cb074d0db (
plain)
1
2
3
4
5
6
7
|
//! ref: composer/vendor/symfony/console/Input/InputAwareInterface.php
use crate::input::InputInterface;
pub trait InputAwareInterface {
fn set_input(&mut self, input: Box<dyn InputInterface>);
}
|