/**
  * Singleton get method
  *
  * @since  1.0.0
  * @access public
  *
  * @return DLM_Product_Manager
  */
 public static function get()
 {
     if (null == self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }