public static function getInstance()
 {
     if (empty(self::$isntance)) {
         self::$isntance = new self();
     }
     return self::$isntance;
 }