Esempio n. 1
0
 /**
  * Singletone instance getter
  *
  * @return Lithium
  */
 public static function getInstance()
 {
     if (null === self::$oInstance) {
         self::$oInstance = new self();
     }
     return self::$oInstance;
 }