diff --git a/src/helpers.php b/src/helpers.php index 466f76c..180b429 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -16,11 +16,11 @@ * * @return string */ - function honeypot_field($name = null, $class = null) + function honeypot_field($name = null, $class = null, $label = null) { $name = $name ?: HoneypotGuard::FIELD_NAME; $class = $class ?: 'uniform__potty'; - return ''; + return ''; } }