/**
  * Returns a single static instance of this object.
  *
  * @return MpmCommandLineWriter
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new MpmCommandLineWriter();
     }
     return self::$instance;
 }