Esempio n. 1
0
 /**
  * Ensure that only one instance of LPR_Gateways is loadded
  * @return LPR_Gateways|null
  */
 static function instance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }