blob: 7279dc416733c6f35cfbb22f92d08d60d8c10acb (
plain)
1
2
3
4
5
6
7
8
|
use crate::symfony::console::input::input_interface::InputInterface;
use shirabe_php_shim::PhpMixed;
pub trait StreamableInputInterface: InputInterface {
fn set_stream(&mut self, stream: PhpMixed);
fn get_stream(&self) -> Option<PhpMixed>;
}
|