From ae7d61ad967e850d47671e2a11c6e8aafa9dc254 Mon Sep 17 00:00:00 2001 From: carnage Date: Fri, 8 Apr 2016 19:02:47 +0100 Subject: [PATCH] Added @TODO's to advise against removal of deprecated feature see https://github.com/zendframework/zend-inputfilter/issues/101 --- src/Input.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Input.php b/src/Input.php index 21ca91de..be82a8db 100644 --- a/src/Input.php +++ b/src/Input.php @@ -20,6 +20,7 @@ class Input implements { /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain. + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 * * @var bool */ @@ -27,6 +28,7 @@ class Input implements /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain. + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 * * @var bool */ @@ -98,6 +100,7 @@ public function __construct($name = null) /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain and set this to `true`. + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 * * @param bool $allowEmpty * @return Input @@ -120,7 +123,8 @@ public function setBreakOnFailure($breakOnFailure) /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain and set this to `true`. - * + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 + * * @param bool $continueIfEmpty * @return Input */ @@ -227,6 +231,7 @@ public function setFallbackValue($value) /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain. + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 * * @return bool */ @@ -245,6 +250,7 @@ public function breakOnFailure() /** * @deprecated 2.4.8 Add Zend\Validator\NotEmpty validator to the ValidatorChain. Should always return `true`. + * @TODO This cannot be removed until an alternative is provided see https://github.com/zendframework/zend-inputfilter/issues/101 * * @return bool */