Ejemplo n.º 1
0
 /**
  * Vrati vlastni instanci.
  *
  * @return Bobr_Session
  */
 public static function getInstance()
 {
     if (NULL === self::$instance) {
         return self::$instance = new self();
     } else {
         self::$instance->rewrite();
         return self::$instance;
     }
 }