function GetInstanceId()
{
    $instanceId = LBD_StringHelper::Normalize($_GET['t']);
    if (!LBD_StringHelper::HasValue($instanceId) || !LBD_CaptchaBase::IsValidInstanceId($instanceId)) {
        return;
    }
    return $instanceId;
}
        }
    }
    public function __set($_Iisl8d3b3509168w, $_0xw0ajo2oq6scanc5wl81)
    {
        if (method_exists($this, $_iphagbo2efr5bba8 = "set_" . $_Iisl8d3b3509168w)) {
            $this->{$_iphagbo2efr5bba8}($_0xw0ajo2oq6scanc5wl81);
        }
    }
    public function __unset($_0i9nutvkwblfaymh3825r4chq0)
    {
        if (method_exists($this, $_it1gxc55pvcb3mt1k7p0xdhf9p = "unset_" . $_0i9nutvkwblfaymh3825r4chq0)) {
            $this->{$_it1gxc55pvcb3mt1k7p0xdhf9p}();
        }
    }
}
LBD_CaptchaBase::$ProductInfo = array("name" => "BotDetect PHP Captcha Library", "version" => "3.0.0");
final class LBD_CaptchaHttpCommand extends LBD_Enum
{
    private function __construct()
    {
    }
    public static $Names;
    const GetImage = 0;
    const GetSound = 1;
    const GetValidationResult = 2;
    public static function GetName($_17oau3ylyeuicyqxyuh8ofmzs5)
    {
        if (array_key_exists($_17oau3ylyeuicyqxyuh8ofmzs5, LBD_CaptchaHttpCommand::$Names)) {
            return LBD_CaptchaHttpCommand::$Names[$_17oau3ylyeuicyqxyuh8ofmzs5];
        } else {
            throw new Exception("Unknown enumerated value: " . $_17oau3ylyeuicyqxyuh8ofmzs5);
Example #3
0
 private function GetInstanceId()
 {
     $instanceId = $this->input->get('t');
     if (!LBD_StringHelper::HasValue($instanceId) || !LBD_CaptchaBase::IsValidInstanceId($instanceId)) {
         return;
     }
     return $instanceId;
 }
        }
    }
    public function __set($_1239wm998ntls5i8u0olxqdkau, $_1kltw0yztq92pwlg)
    {
        if (method_exists($this, $_lsd70oii7fo8ibzc = "set_" . $_1239wm998ntls5i8u0olxqdkau)) {
            $this->{$_lsd70oii7fo8ibzc}($_1kltw0yztq92pwlg);
        }
    }
    public function __unset($_o6xc6ffl41nt5os7h8ypu)
    {
        if (method_exists($this, $_1xgvutlqa1q7llwb = "unset_" . $_o6xc6ffl41nt5os7h8ypu)) {
            $this->{$_1xgvutlqa1q7llwb}();
        }
    }
}
LBD_CaptchaBase::$ProductInfo = array("name" => "BotDetect PHP Captcha Library", "version" => "v3.0.Beta1-Build201305161207");
final class LBD_CaptchaHttpCommand extends LBD_Enum
{
    private function __construct()
    {
    }
    public static $Names;
    const GetImage = 0;
    const GetSound = 1;
    const GetValidationResult = 2;
    public static function GetName($_Oqrywi5mzpt32ptx4qums)
    {
        if (array_key_exists($_Oqrywi5mzpt32ptx4qums, LBD_CaptchaHttpCommand::$Names)) {
            return LBD_CaptchaHttpCommand::$Names[$_Oqrywi5mzpt32ptx4qums];
        } else {
            throw new Exception("Unknown enumerated value: " . $_Oqrywi5mzpt32ptx4qums);
 /**
  * @return string
  */
 private function GetInstanceId()
 {
     $instanceId = $this->GetUrlParameter('t');
     if (!\LBD_StringHelper::HasValue($instanceId) || !\LBD_CaptchaBase::IsValidInstanceId($instanceId)) {
         return;
     }
     return $instanceId;
 }