aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/input/streamable_input_interface.rs
blob: aea2bf26053a6b8af5535ff596e910432f7297fc (plain)
1
2
3
4
5
6
7
use crate::symfony::console::input::InputInterface;
use shirabe_php_shim::PhpMixed;

pub trait StreamableInputInterface: InputInterface {
    fn set_stream(&mut self, stream: PhpMixed);
    fn get_stream(&self) -> Option<PhpMixed>;
}