blob: f8b2e2420df37884aeb2cb1804c35685c445dc38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct HelperSet;
impl HelperSet {
pub fn new(_helpers: Vec<PhpMixed>) -> Self {
todo!()
}
pub fn get(&self, _name: &str) -> Option<PhpMixed> {
todo!()
}
pub fn set(&mut self, _helper: PhpMixed, _alias: Option<&str>) {
todo!()
}
pub fn has(&self, _name: &str) -> bool {
todo!()
}
}
|