public static function getInstance()
 {
     if (Facade::$instance == null) {
         Facade::$instance = new Facade();
     }
     return Facade::$instance;
 }