/**
  * Get the run options
  *
  * @return array
  */
 public static function getRunOptions($code = false)
 {
     if ($code !== false) {
         self::$_clientCode = $code;
     }
     return array('config_model' => self::CONFIG_CLASS, 'client_code' => $code ?: self::getClientCode());
 }