use crate::symfony::console::helper::HelperInterface; use indexmap::IndexMap; use std::cell::RefCell; use std::rc::Rc; #[derive(Debug)] pub struct HelperSet { helpers: IndexMap>>, } impl HelperSet { pub fn new(_helpers: Vec>>) -> Self { todo!() } pub fn get(&self, _name: &str) -> Rc> { todo!() } pub fn set(&mut self, _helper: Rc>, _alias: Option<&str>) { todo!() } pub fn has(&self, _name: &str) -> bool { todo!() } }