Exemplo n.º 1
0
 /**
  * Singleton pattern
  * 
  * @return QR_RSBlock
  */
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self(0, 0);
     }
     return self::$instance;
 }