blob: 32965cfb77104634a540b6bf672b077a2056b8d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/// Stub for \Symfony\Component\Console\Command\Command.
pub trait Command {
fn get_name(&self) -> Option<String> {
todo!()
}
fn set_name(&mut self, _name: &str) {
todo!()
}
fn get_description(&self) -> String {
todo!()
}
fn set_description(&mut self, _description: &str) {
todo!()
}
}
|