public static function getInstance()
 {
     if (self::$singleton == null) {
         self::$singleton = new DestinationsConfigurator();
     }
     return self::$singleton;
 }