blob: e55dbceaff9d1cc3c0348160199106acbdb782d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use crate::symfony::console::helper::HelperInterface;
#[derive(Debug)]
pub struct FormatterHelper;
impl FormatterHelper {
pub fn format_section(&self, _section: &str, _message: &str, _style: &str) -> String {
todo!()
}
pub fn format_block(&self, _messages: &[&str], _style: &str, _large: bool) -> String {
todo!()
}
}
impl HelperInterface for FormatterHelper {
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
|