/**
  * Allows the addition to the default config by the user
  * @param array $config The extending config
  */
 public static function extendConfig($config)
 {
     if (is_array($config)) {
         self::$config = array_merge(self::$config, $config);
     }
 }