/**
  * Provides access to a single instance of a module using the singleton pattern
  *
  * @since    1.0.0
  * @return object
  */
 public static function get_instance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }