Exemplo n.º 1
0
 /**
  * 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;
 }