コード例 #1
0
ファイル: class-simmer.php プロジェクト: robneu/simmer
 /**
  * Get the only instance of this class.
  *
  * @since 1.0.0
  *
  * @return object $_instance The only instance of this class.
  */
 public static function get_instance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }