Пример #1
0
 /**
  * @return SmsService
  */
 public static function getInstance()
 {
     if (!isset(self::$instance) || !is_object(self::$instance)) {
         self::$instance = new SmsService();
     }
     return self::$instance;
 }