security = $security; $this->reminderStore = $reminderStore; } public function getFunctions() { return [ new TwigFunction('sov_reminders', [$this, 'getReminders']), ]; } public function getFilters() { return []; } public function getReminders($params) { //TODO !!!!!! return array(); } }