_Instance() 보호된 정적인 메소드

protected static _Instance ( ) : SpamModel
리턴 SpamModel
예제 #1
0
 /**
  *
  *
  * @return SpamModel
  */
 protected static function _Instance()
 {
     if (!self::$_Instance) {
         self::$_Instance = new SpamModel();
     }
     return self::$_Instance;
 }