Example #1
0
 /**
  * @staticvar bool $bOne
  * @return bool
  */
 public static function Handle()
 {
     static $bOne = null;
     if (null === $bOne) {
         $oService = null;
         if (\class_exists('MailSo\\Version')) {
             $oService = new self();
         }
         $bOne = $oService->RunResult();
     }
     return $bOne;
 }