/**
  * Get the single instance aka Singleton
  *
  * @access public
  * @since 1.0.0
  * @version 1.0.0
  * @return bool
  */
 public static function instance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }