aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/helper_set.rs
blob: 94483101980a4302d4807db8cbc132469e1662ac (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!()
    }
}