Exemple #1
0
 /**
  * Provides a stored instance of the arch class. The instance itself
  * doesn't store a useful state. This is more for utility.
  * @return Asar
  */
 static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }