Пример #1
0
 /**
  *  Use Singleton pattern here
  *  @return object The instance of the class itself.
  */
 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }