Skip to content

Commit

Permalink
Merge pull request #626 from creative-commoners/pulls/4.0/rename-ffv
Browse files Browse the repository at this point in the history
API Rename FormField Value to getFormattedValue
  • Loading branch information
GuySartorelli authored Feb 12, 2025
2 parents 265bf66 + 18a449f commit 9486763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Forms/WildcardDomainField.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class WildcardDomainField extends TextField
public function validate(): ValidationResult
{
$this->beforeExtending('updateValidate', function (ValidationResult $result) {
if ($this->checkHostname($this->Value())) {
if ($this->checkHostname($this->getValue())) {
return;
}
$result->addFieldError(
Expand Down

0 comments on commit 9486763

Please sign in to comment.