blob: 26af49241e54dbcfa384b4cb90980b59adfce7ca (
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) -> PhpMixed {
todo!()
}
pub fn set(&mut self, _helper: PhpMixed, _alias: Option<&str>) {
todo!()
}
pub fn has(&self, _name: &str) -> bool {
todo!()
}
}
|