X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fhelper%2Fcaptcha%2Fclass_BaseCaptcha.php;h=313ef4c69b9c75c99d67e1c59700f0bc7eea0000;hp=72930291611c5e64cc9922867a52247691cacf64;hb=a34a10c85ac693d6d2c183258eb36deb353d003e;hpb=a6ec0211ffb9b65e7c8efd81abdbb925774264ff diff --git a/inc/classes/main/helper/captcha/class_BaseCaptcha.php b/inc/classes/main/helper/captcha/class_BaseCaptcha.php index 72930291..313ef4c6 100644 --- a/inc/classes/main/helper/captcha/class_BaseCaptcha.php +++ b/inc/classes/main/helper/captcha/class_BaseCaptcha.php @@ -22,11 +22,6 @@ * along with this program. If not, see . */ class BaseCaptcha extends BaseHelper { - /** - * A helper instance for the form - */ - private $helperInstance = null; - /** * Protected constructor * @@ -48,25 +43,6 @@ class BaseCaptcha extends BaseHelper { // Get an RNG from factory $this->setRngInstance(ObjectFactory::createObjectByConfiguredName('rng_class', array($extraInstance))); } - - /** - * Setter for helper instance - * - * @param $helperInstance An instance of a helper class - * @return void - */ - protected final function setHelperInstance (HelpableTemplate $helperInstance) { - $this->helperInstance = $helperInstance; - } - - /** - * Getter for helper instance - * - * @return $helperInstance An instance of a helper class - */ - public final function getHelperInstance () { - return $this->helperInstance; - } } // [EOF]