Пример #1
0
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new TemplateHelper();
     }
     return self::$instance;
 }
Пример #2
0
 public static function init(TemplateHelperInterface $templateHelper)
 {
     self::$instance = new TemplateHelper($templateHelper);
 }