Ejemplo n.º 1
0
 /**
  * Get the TwigManager instance
  * 
  * @param string $mvc_name
  * @return TwigManager
  * @throws Exception
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }