Esempio n. 1
0
 public static function getInstance($refresh = false)
 {
     if (is_null(self::$instance) || $refresh) {
         self::$instance = new self();
     }
     return self::$instance;
 }