template_loader = $template_loader; } public function get( $active_currencies, $selected_currency ) { $model = [ 'active_currencies' => $active_currencies, 'selected_currency' => $selected_currency, ]; return $this->get_template()->show( $model, 'currencies-dropdown.twig' ); } private function get_template() { if ( null === $this->template ) { $this->template = $this->template_loader->get_template(); } return $this->template; } }