LegacyValidator
final class LegacyValidator extends Validator
Baseline validator using the pre-rewrite validateAttribute() loop AND the original O(n²) wildcard expansion.
Provides an accurate performance comparison against the full optimized path by reverting BOTH the execution model and the wildcard expansion.
Traits
Execute compiled AttributePlans against validation data.
Properties
| protected Container|null | $container | The container instance. |
from Validator |
| protected PresenceVerifierInterface|null | $presenceVerifier | The Presence Verifier implementation. |
from Validator |
| protected array | $failedRules | The failed validation rules. |
from Validator |
| protected array | $excludeAttributes | Attributes that should be excluded from the validated data. |
from Validator |
| protected MessageBag|null | $messages | The message bag instance. |
from Validator |
| protected array | $data | The data under validation. |
from Validator |
| protected array | $initialRules | The initial rules provided. |
from Validator |
| protected array | $rules | The rules to be applied to the data. |
from Validator |
| protected array|object|string|null | $currentRule | The current rule that is validating. |
from Validator |
| protected array | $implicitAttributes | The array of wildcard attributes with their asterisks expanded. |
from Validator |
| protected Closure|null | $implicitAttributesFormatter | The callback that should be used to format the attribute. |
from Validator |
| protected array | $distinctValues | The cached data for the "distinct" rule. |
from Validator |
| protected AttributePlan> | $compiledPlans | The compiled execution plans for the current passes() invocation. |
from Validator |
| protected PresenceVerifierInterface|null | $originalPresenceVerifier | The original presence verifier, saved during batched DB checks. |
from Validator |
| protected array<string, true> | $preExcludedAttributes | Attributes pre-excluded by the exclude_unless/exclude_if pre-pass. |
from Validator |
| protected array | $after | All of the registered "after" callbacks. |
from Validator |
| array | $customMessages | The array of custom error messages. |
from Validator |
| array | $fallbackMessages | The array of fallback error messages. |
from Validator |
| array | $customAttributes | The array of custom attribute names. |
from Validator |
| array | $customValues | The array of custom displayable values. |
from Validator |
| protected bool | $stopOnFirstFailure | Indicates if the validator should stop on the first rule failure. |
from Validator |
| bool | $excludeUnvalidatedArrayKeys | Indicates that unvalidated array keys should be excluded, even if the parent array was validated. |
from Validator |
| array | $extensions | All of the custom validator extensions. |
from Validator |
| array | $replacers | All of the custom replacer extensions. |
from Validator |
| protected string[] | $fileRules | The validation rules that may be applied to files. |
from Validator |
| protected string[] | $implicitRules | The validation rules that imply the field is required. |
from Validator |
| protected string[] | $dependentRules | The validation rules which depend on other fields as parameters. |
from Validator |
| protected string[] | $excludeRules | The validation rules that can exclude an attribute. |
from Validator |
| protected string[] | $sizeRules | The size related validation rules. |
from Validator |
| protected string[] | $numericRules | The numeric related validation rules. |
from Validator |
| protected string[] | $defaultNumericRules | The default numeric related validation rules. |
from Validator |
| static protected string|null | $placeholderHash | The current random hash for the validator. |
from Validator |
| protected ValidationException> | $exception | The exception to throw upon failure. |
from Validator |
| protected Closure|null | $ensureExponentWithinAllowedRangeUsing | The custom callback to determine if an exponent is within allowed range. |
from Validator |
Methods
Replace all place-holders for the accepted_if rule.
Replace all place-holders for the declined_if rule.
Replace all place-holders for the between rule.
Replace all place-holders for the date_format rule.
Replace all place-holders for the decimal rule.
Replace all place-holders for the different rule.
Replace all place-holders for the digits rule.
Replace all place-holders for the digits (between) rule.
Replace all place-holders for the encoding rule.
Replace all place-holders for the extensions rule.
Replace all place-holders for the min rule.
Replace all place-holders for the min digits rule.
Replace all place-holders for the max rule.
Replace all place-holders for the max digits rule.
Replace all place-holders for the missing_if rule.
Replace all place-holders for the missing_unless rule.
Replace all place-holders for the missing_with rule.
Replace all place-holders for the missing_with_all rule.
Replace all place-holders for the multiple_of rule.
Replace all place-holders for the in rule.
Replace all place-holders for the not_in rule.
Replace all place-holders for the in_array rule.
Replace all place-holders for the in_array_keys rule.
Replace all place-holders for the required_array_keys rule.
Replace all place-holders for the mimetypes rule.
Replace all place-holders for the mimes rule.
Replace all place-holders for the present_if rule.
Replace all place-holders for the present_unless rule.
Replace all place-holders for the present_with rule.
Replace all place-holders for the present_with_all rule.
Replace all place-holders for the required_with rule.
Replace all place-holders for the required_with_all rule.
Replace all place-holders for the required_without rule.
Replace all place-holders for the required_without_all rule.
Replace all place-holders for the size rule.
Replace all place-holders for the gt rule.
Replace all place-holders for the lt rule.
Replace all place-holders for the gte rule.
Replace all place-holders for the lte rule.
Replace all place-holders for the required_if rule.
Replace all place-holders for the required_if_accepted rule.
Replace all place-holders for the required_if_declined rule.
Replace all place-holders for the required_unless rule.
Replace all place-holders for the prohibited_if rule.
Replace all place-holders for the prohibited_if_accepted rule.
Replace all place-holders for the prohibited_if_declined rule.
Replace all place-holders for the prohibited_unless rule.
Replace all place-holders for the prohibited_with rule.
Replace all place-holders for the same rule.
Replace all place-holders for the before rule.
Replace all place-holders for the before_or_equal rule.
Replace all place-holders for the after rule.
Replace all place-holders for the after_or_equal rule.
Replace all place-holders for the date_equals rule.
Replace all place-holders for the dimensions rule.
Replace all place-holders for the ends_with rule.
Replace all place-holders for the doesnt_end_with rule.
Replace all place-holders for the starts_with rule.
Replace all place-holders for the doesnt_start_with rule.
Replace all place-holders for the doesnt_contain rule.
Get the validation message for an attribute and rule.
Get the proper inline error message for standard and size rules.
Get the inline message for a rule if it exists.
Get the custom error message from the translator.
Check the given messages for a wildcard key.
Get the proper error message for an attribute and size rule.
Get the data type of the given attribute.
Replace all error message place-holders with actual values.
Get the displayable name of the attribute.
Get the given attribute from the attribute translations.
Get the custom name for an attribute if it exists in the given array.
Replace the :attribute placeholder in the given message.
Replace the :index placeholder in the given message.
Replace the :position placeholder in the given message.
Replace the :ordinal-position placeholder in the given message.
Replace the :index or :position placeholder in the given message.
Get the word for a index or position segment.
Replace the :input placeholder in the given message.
Get the displayable name of the value.
Transform an array of attributes to their displayable form.
Call a custom validator message replacer.
Call a class based validator message replacer.
Validate that an attribute was "accepted".
Validate that an attribute was "accepted" when another attribute has a given value.
Validate that an attribute was "declined".
Validate that an attribute was "declined" when another attribute has a given value.
Validate that an attribute is an active URL.
Get the DNS records for the given hostname.
Validate that an attribute is 7 bit ASCII.
Validate the date is before a given date.
Validate the date is before or equal a given date.
Validate the date is after a given date.
Validate the date is equal or after a given date.
Compare a given date against another using an operator.
Get the date format for an attribute if it has one.
Given two date/time strings, check that one is after the other.
Get a DateTime instance from a string.
Validate that an attribute contains only alphabetic characters.
Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
Validate that an attribute contains only alpha-numeric characters.
Validate that an attribute is an array.
Validate that an attribute is a list.
Validate that an array has all of the given keys.
Validate the size of an attribute is between a set of values.
Validate that an attribute is a boolean.
Validate that an attribute has a matching confirmation.
Validate an attribute contains a list of values.
Validate an attribute does not contain a list of values.
Validate that the password of the currently authenticated user matches the given value.
Validate that an attribute is a valid date.
Validate that an attribute matches a date format.
Determine if a value matches a specific date format.
Validate that an attribute is equal to another date.
Validate that an attribute has a given number of decimal places.
Validate that an attribute is different from another attribute.
Validate that an attribute has a given number of digits.
Validate that an attribute is between a given number of digits.
Validate the dimensions of an image matches the given values.
Test if the given width and height fail any conditions.
Determine if the given parameters fail a dimension ratio check.
Validate an attribute is unique among other values.
Get the values to distinct between.
Extract the distinct values from the data.
Validate that an attribute is a valid e-mail address.
Determine if a value is a valid email address using basic RFC validation.
Validate that a value has a specific character encoding.
Validate the existence of an attribute value in a database table.
Get the number of records that exist in storage.
Validate the uniqueness of an attribute value on a given database table.
Get the excluded ID column and value for the unique rule.
Prepare the given ID for querying.
Get the extra conditions for a unique rule.
Parse the connection / table for the unique / exists rules.
Get the column name for an exists / unique query.
Guess the database column from the given attribute name.
Get the extra conditions for a unique / exists rule.
Validate the extension of a file upload attribute is in a set of defined extensions.
Validate the given value is a valid file.
Validate the given attribute is filled if it is present.
Validate that an attribute is greater than another attribute.
Validate that an attribute is less than another attribute.
Validate that an attribute is greater than or equal another attribute.
Validate that an attribute is less than or equal another attribute.
Validate that an attribute is lowercase.
Validate that an attribute is uppercase.
Validate that an attribute is a valid HEX color.
Validate the MIME type of a file is an image MIME type.
Validate an attribute is contained within a list of values.
Validate that the values of an attribute are in another attribute.
Validate that an array contains at least one of the given keys.
Validate that an attribute is an integer.
Validate that an attribute is a valid IP.
Validate that an attribute is a valid IPv4.
Validate that an attribute is a valid IPv6.
Determine if a value is a valid IP address (any version).
Determine if a value is a valid IPv4 address.
Determine if a value is a valid IPv6 address.
Validate that an attribute is a valid MAC address.
Validate the attribute is a valid JSON string.
Validate the size of an attribute is less than or equal to a maximum value.
Validate that an attribute has a maximum number of digits.
Validate the guessed extension of a file upload is in a set of file extensions.
Validate the MIME type of a file upload attribute is in a set of MIME types.
Check if PHP uploads are explicitly allowed.
Validate the size of an attribute is greater than or equal to a minimum value.
Validate that an attribute has a minimum number of digits.
Validate that an attribute is missing.
Validate that an attribute is missing when another attribute has a given value.
Validate that an attribute is missing unless another attribute has a given value.
Validate that an attribute is missing when any given attribute is present.
Validate that an attribute is missing when all given attributes are present.
Validate the value of an attribute is a multiple of a given value.
Determine if a value is an exact multiple of a divisor.
"Indicate" validation should pass if value is null.
Validate an attribute is not contained within a list of values.
Validate that an attribute is numeric.
Validate that an attribute exists even if not filled.
Validate that an attribute is present when another attribute has a given value.
Validate that an attribute is present unless another attribute has a given value.
Validate that an attribute is present when any given attribute is present.
Validate that an attribute is present when all given attributes are present.
Validate that an attribute passes a regular expression check.
Validate that an attribute does not pass a regular expression check.
Validate that a required attribute exists.
Validate that an attribute exists when another attribute has a given value.
Validate that an attribute exists when another attribute was "accepted".
Validate that an attribute exists when another attribute was "declined".
Validate that an attribute does not exist or is an empty string.
Validate that an attribute does not exist when another attribute has a given value.
Validate that an attribute does not exist when another attribute was "accepted".
Validate that an attribute does not exist when another attribute was "declined".
Validate that an attribute does not exist unless another attribute has a given value.
Validate that other attributes do not exist when this attribute exists.
Indicate that an attribute should be excluded when another attribute has a given value.
Indicate that an attribute should be excluded when another attribute does not have a given value.
Validate that an attribute exists when another attribute does not have a given value.
Indicate that an attribute should be excluded when another attribute presents.
Indicate that an attribute should be excluded when another attribute is missing.
Prepare the values and the other value for validation.
Check if parameter should be converted to boolean.
Convert the given values to boolean if they are string "true" / "false".
Convert the given values to null if they are string "null".
Validate that an attribute exists when any other attribute exists.
Validate that an attribute exists when all other attributes exist.
Validate that an attribute exists when another attribute does not.
Validate that an attribute exists when all other attributes do not.
Determine if any of the given attributes fail the required test.
Determine if all of the given attributes fail the required test.
Validate that two attributes match.
Validate the size of an attribute.
Validate the attribute starts with a given substring.
Validate the attribute does not start with a given substring.
Validate the attribute ends with a given substring.
Validate the attribute does not end with a given substring.
Validate that an attribute is a string.
Validate that an attribute is a valid timezone.
Validate that an attribute is a valid URL.
Validate that an attribute is a valid ULID.
Validate that an attribute is a valid UUID.
Determine if a value is a valid UUID (any version).
Get the size of an attribute.
Compute a value's "size" given a pre-resolved mode.
Check that the given value is a valid file instance.
Determine if a comparison passes between the given values.
Parse named parameters to $key => $value items.
Require a certain number of parameters to be present.
Check if the parameters are of the same type.
Adds the existing rule to the numericRules array if the attribute's value is numeric.
Ensure the exponent is within the allowed range.
Execute all compiled plans against the validation data.
Execute an inline check against a value.
Create a new Validator instance.
Replace the placeholders in the given string.
Replace each field parameter dot placeholder with dot.
Determine if the data passes the validation rules using the legacy path.
Determine if any compiled plan contains a ValidatorAwareRule.
Pre-evaluate exclude_unless / exclude_if conditions before the main loop.
Build a PrecomputedPresenceVerifier for wildcard-expanded exists/unique rules by batching their lookups into single whereIn queries.
Execute the callback if the data passes the validation rules.
Execute the callback if the data fails the validation rules.
Determine if the attribute should be excluded.
Get a validated input container for the validated input.
Validate a given attribute against a rule.
Determine if the given rule depends on other fields.
Get the explicit keys from an attribute flattened with dot notation.
Replace each field parameter which has an escaped dot with the dot placeholder.
Replace each field parameter which has asterisks with the given keys.
Determine if the attribute is validatable.
Determine if the field is present, or the rule implies required.
Determine if a given rule implies the attribute is required.
Determine if the attribute passes any optional check.
Determine if the attribute fails the nullable check.
Determine if it's a necessary presence validation.
Validate an attribute using a custom rule object.
Check if we should stop further validations on a given attribute.
Add a failed rule and error message to the collection.
Add the given attribute to the list of excluded attributes.
Generate an array of all attributes that have messages.
Determine if the given attribute has a rule in the given set.
Get a rule and its parameters for a given attribute.
Get the validation rules with key placeholders removed.
Override addRules to use the legacy O(n²) wildcard expansion parser.
Add conditions to a given field based on a Closure.
Instruct the validator to stop validating after the first rule failure.
Register an array of custom validator extensions.
Register an array of custom implicit validator extensions.
Register an array of custom dependent validator extensions.
Register a custom implicit validator extension.
Register a custom dependent validator extension.
Register an array of custom validator message replacers.
Set the custom messages for the validator.
Set the custom attributes on the validator.
Add custom attributes to the validator.
Set the callback that used to format an implicit attribute.
Add the custom values for the validator.
Set the fallback messages for the validator.
Get the Presence Verifier implementation.
Set the Presence Verifier implementation.
Ensure exponents are within range using the given callback.
Call a custom validator extension.
Call a class based validator extension.
Encode the attribute with the placeholder hash.
Decode an attribute with a placeholder hash.
Details
in
ReplacesAttributes at line 17
protected string
replaceAcceptedIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the accepted_if rule.
in
ReplacesAttributes at line 29
protected string
replaceDeclinedIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the declined_if rule.
in
ReplacesAttributes at line 43
protected string
replaceBetween(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the between rule.
in
ReplacesAttributes at line 53
protected string
replaceDateFormat(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the date_format rule.
in
ReplacesAttributes at line 63
protected string
replaceDecimal(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the decimal rule.
in
ReplacesAttributes at line 79
protected string
replaceDifferent(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the different rule.
in
ReplacesAttributes at line 89
protected string
replaceDigits(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the digits rule.
in
ReplacesAttributes at line 99
protected string
replaceDigitsBetween(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the digits (between) rule.
in
ReplacesAttributes at line 109
protected string
replaceEncoding(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the encoding rule.
in
ReplacesAttributes at line 119
protected string
replaceExtensions(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the extensions rule.
in
ReplacesAttributes at line 129
protected string
replaceMin(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the min rule.
in
ReplacesAttributes at line 139
protected string
replaceMinDigits(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the min digits rule.
in
ReplacesAttributes at line 149
protected string
replaceMax(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the max rule.
in
ReplacesAttributes at line 159
protected string
replaceMaxDigits(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the max digits rule.
in
ReplacesAttributes at line 169
protected string
replaceMissingIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the missing_if rule.
in
ReplacesAttributes at line 183
protected string
replaceMissingUnless(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the missing_unless rule.
in
ReplacesAttributes at line 196
protected string
replaceMissingWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the missing_with rule.
in
ReplacesAttributes at line 214
protected string
replaceMissingWithAll(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the missing_with_all rule.
in
ReplacesAttributes at line 225
protected string
replaceMultipleOf(mixed $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the multiple_of rule.
in
ReplacesAttributes at line 235
protected string
replaceIn(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the in rule.
in
ReplacesAttributes at line 257
protected string
replaceNotIn(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the not_in rule.
in
ReplacesAttributes at line 267
protected string
replaceInArray(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the in_array rule.
in
ReplacesAttributes at line 279
protected string
replaceInArrayKeys(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the in_array_keys rule.
in
ReplacesAttributes at line 289
protected string
replaceRequiredArrayKeys(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_array_keys rule.
in
ReplacesAttributes at line 303
protected string
replaceMimetypes(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the mimetypes rule.
in
ReplacesAttributes at line 313
protected string
replaceMimes(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the mimes rule.
in
ReplacesAttributes at line 323
protected string
replacePresentIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the present_if rule.
in
ReplacesAttributes at line 336
protected string
replacePresentUnless(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the present_unless rule.
in
ReplacesAttributes at line 349
protected string
replacePresentWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the present_with rule.
in
ReplacesAttributes at line 367
protected string
replacePresentWithAll(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the present_with_all rule.
in
ReplacesAttributes at line 377
protected string
replaceRequiredWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_with rule.
in
ReplacesAttributes at line 395
protected string
replaceRequiredWithAll(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_with_all rule.
in
ReplacesAttributes at line 405
protected string
replaceRequiredWithout(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_without rule.
in
ReplacesAttributes at line 415
protected string
replaceRequiredWithoutAll(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_without_all rule.
in
ReplacesAttributes at line 425
protected string
replaceSize(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the size rule.
in
ReplacesAttributes at line 435
protected string
replaceGt(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the gt rule.
in
ReplacesAttributes at line 449
protected string
replaceLt(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the lt rule.
in
ReplacesAttributes at line 463
protected string
replaceGte(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the gte rule.
in
ReplacesAttributes at line 477
protected string
replaceLte(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the lte rule.
in
ReplacesAttributes at line 491
protected string
replaceRequiredIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_if rule.
in
ReplacesAttributes at line 505
protected string
replaceRequiredIfAccepted(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_if_accepted rule.
in
ReplacesAttributes at line 517
string
replaceRequiredIfDeclined(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_if_declined rule.
in
ReplacesAttributes at line 529
protected string
replaceRequiredUnless(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the required_unless rule.
in
ReplacesAttributes at line 558
protected string
replaceProhibitedIf(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the prohibited_if rule.
in
ReplacesAttributes at line 568
protected string
replaceProhibitedIfAccepted(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the prohibited_if_accepted rule.
in
ReplacesAttributes at line 578
string
replaceProhibitedIfDeclined(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the prohibited_if_declined rule.
in
ReplacesAttributes at line 588
protected string
replaceProhibitedUnless(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the prohibited_unless rule.
in
ReplacesAttributes at line 606
protected string
replaceProhibits(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the prohibited_with rule.
in
ReplacesAttributes at line 624
protected string
replaceSame(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the same rule.
in
ReplacesAttributes at line 636
protected string
replaceBefore(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the before rule.
in
ReplacesAttributes at line 650
protected string
replaceBeforeOrEqual(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the before_or_equal rule.
in
ReplacesAttributes at line 660
protected string
replaceAfter(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the after rule.
in
ReplacesAttributes at line 670
protected string
replaceAfterOrEqual(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the after_or_equal rule.
in
ReplacesAttributes at line 680
protected string
replaceDateEquals(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the date_equals rule.
in
ReplacesAttributes at line 690
protected string
replaceDimensions(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the dimensions rule.
in
ReplacesAttributes at line 708
protected string
replaceEndsWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the ends_with rule.
in
ReplacesAttributes at line 722
protected string
replaceDoesntEndWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the doesnt_end_with rule.
in
ReplacesAttributes at line 736
protected string
replaceStartsWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the starts_with rule.
in
ReplacesAttributes at line 746
protected string
replaceDoesntStartWith(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the doesnt_start_with rule.
in
ReplacesAttributes at line 760
protected string
replaceDoesntContain(string $message, string $attribute, string $rule, array $parameters)
Replace all place-holders for the doesnt_contain rule.
in
FormatsMessages at line 21
protected string
getMessage(string $attribute, string $rule)
Get the validation message for an attribute and rule.
in
FormatsMessages at line 79
protected string|null
getInlineMessage(string $attribute, string $rule)
Get the proper inline error message for standard and size rules.
in
FormatsMessages at line 91
protected array|string|null
getFromLocalArray(string $attribute, string $lowerRule, array|null $source = null)
Get the inline message for a rule if it exists.
in
FormatsMessages at line 144
protected string
getCustomMessageFromTranslator(array|string $keys)
Get the custom error message from the translator.
in
FormatsMessages at line 175
protected string
getWildcardCustomMessages(array $messages, string $search, string $default)
Check the given messages for a wildcard key.
in
FormatsMessages at line 190
protected string
getSizeMessage(string $attribute, string $rule)
Get the proper error message for an attribute and size rule.
in
FormatsMessages at line 207
protected string
getAttributeType(string $attribute)
Get the data type of the given attribute.
in
FormatsMessages at line 223
string
makeReplacements(string $message, string $attribute, string $rule, array $parameters)
Replace all error message place-holders with actual values.
in
FormatsMessages at line 248
string
getDisplayableAttribute(string $attribute)
Get the displayable name of the attribute.
in
FormatsMessages at line 287
protected string|null
getAttributeFromTranslations(string $name)
Get the given attribute from the attribute translations.
in
FormatsMessages at line 299
protected string|null
getAttributeFromLocalArray(string $attribute, array|null $source = null)
Get the custom name for an attribute if it exists in the given array.
in
FormatsMessages at line 323
protected string
replaceAttributePlaceholder(string $message, string $value)
Replace the :attribute placeholder in the given message.
in
FormatsMessages at line 335
protected string
replaceIndexPlaceholder(string $message, string $attribute)
Replace the :index placeholder in the given message.
in
FormatsMessages at line 347
protected string
replacePositionPlaceholder(string $message, string $attribute)
Replace the :position placeholder in the given message.
in
FormatsMessages at line 360
protected string
replaceOrdinalPositionPlaceholder(string $message, string $attribute)
Replace the :ordinal-position placeholder in the given message.
in
FormatsMessages at line 377
protected string
replaceIndexOrPositionPlaceholder(string $message, string $attribute, string $placeholder, Closure|null $modifier = null)
Replace the :index or :position placeholder in the given message.
in
FormatsMessages at line 413
protected string
numberToIndexOrPositionWord(int $value)
Get the word for a index or position segment.
in
FormatsMessages at line 432
protected string
replaceInputPlaceholder(string $message, string $attribute)
Replace the :input placeholder in the given message.
in
FormatsMessages at line 450
string
getDisplayableValue(string $attribute, mixed $value)
Get the displayable name of the value.
in
FormatsMessages at line 480
protected array
getAttributeList(array $values)
Transform an array of attributes to their displayable form.
in
FormatsMessages at line 497
protected string|null
callReplacer(string $message, string $attribute, string $rule, array $parameters, Validator $validator)
Call a custom validator message replacer.
in
FormatsMessages at line 514
protected string
callClassBasedReplacer(string $callback, string $message, string $attribute, string $rule, array $parameters, Validator $validator)
Call a class based validator message replacer.
in
ValidatesAttributes at line 46
bool
validateAccepted(string $attribute, mixed $value)
Validate that an attribute was "accepted".
This validation rule implies the attribute is "required".
in
ValidatesAttributes at line 56
bool
validateAcceptedIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute was "accepted" when another attribute has a given value.
in
ValidatesAttributes at line 76
bool
validateDeclined(string $attribute, mixed $value)
Validate that an attribute was "declined".
This validation rule implies the attribute is "required".
in
ValidatesAttributes at line 86
bool
validateDeclinedIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute was "declined" when another attribute has a given value.
in
ValidatesAttributes at line 104
bool
validateActiveUrl(string $attribute, mixed $value)
Validate that an attribute is an active URL.
in
ValidatesAttributes at line 128
protected array|false
getDnsRecords(string $hostname, int $type)
Get the DNS records for the given hostname.
in
ValidatesAttributes at line 136
bool
validateAscii(string $attribute, mixed $value)
Validate that an attribute is 7 bit ASCII.
in
ValidatesAttributes at line 146
bool
validateBail()
"Break" on first validation fail.
Always returns true, just lets us put "bail" in rules.
in
ValidatesAttributes at line 156
bool
validateBefore(string $attribute, mixed $value, mixed $parameters)
Validate the date is before a given date.
in
ValidatesAttributes at line 168
bool
validateBeforeOrEqual(string $attribute, mixed $value, mixed $parameters)
Validate the date is before or equal a given date.
in
ValidatesAttributes at line 180
bool
validateAfter(string $attribute, mixed $value, mixed $parameters)
Validate the date is after a given date.
in
ValidatesAttributes at line 192
bool
validateAfterOrEqual(string $attribute, mixed $value, mixed $parameters)
Validate the date is equal or after a given date.
in
ValidatesAttributes at line 204
protected bool
compareDates(string $attribute, mixed $value, array $parameters, string $operator)
Compare a given date against another using an operator.
in
ValidatesAttributes at line 224
protected string|null
getDateFormat(string $attribute)
Get the date format for an attribute if it has one.
in
ValidatesAttributes at line 236
protected int|null
getDateTimestamp(mixed $value)
Get the date timestamp.
in
ValidatesAttributes at line 246
protected bool
checkDateTimeOrder(string $format, string $first, string $second, string $operator)
Given two date/time strings, check that one is after the other.
in
ValidatesAttributes at line 266
protected DateTimeInterface|null
getDateTimeWithOptionalFormat(string $format, string $value)
Get a DateTime instance from a string.
in
ValidatesAttributes at line 278
protected DateTimeInterface|null
getDateTime(DateTimeInterface|string $value)
Get a DateTime instance from a string with no format.
in
ValidatesAttributes at line 292
bool
validateAlpha(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute contains only alphabetic characters.
If the 'ascii' option is passed, validate that an attribute contains only ascii alphabetic characters.
in
ValidatesAttributes at line 306
bool
validateAlphaDash(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
If the 'ascii' option is passed, validate that an attribute contains only ascii alpha-numeric characters, dashes, and underscores.
in
ValidatesAttributes at line 323
bool
validateAlphaNum(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute contains only alpha-numeric characters.
If the 'ascii' option is passed, validate that an attribute contains only ascii alpha-numeric characters.
in
ValidatesAttributes at line 341
bool
validateArray(string $attribute, mixed $value, array $parameters = [])
Validate that an attribute is an array.
in
ValidatesAttributes at line 357
bool
validateList(string $attribute, mixed $value)
Validate that an attribute is a list.
in
ValidatesAttributes at line 367
bool
validateRequiredArrayKeys(string $attribute, mixed $value, array $parameters)
Validate that an array has all of the given keys.
in
ValidatesAttributes at line 387
bool
validateBetween(string $attribute, mixed $value, array $parameters)
Validate the size of an attribute is between a set of values.
in
ValidatesAttributes at line 400
bool
validateBoolean(string $attribute, mixed $value, array $parameters)
Validate that an attribute is a boolean.
in
ValidatesAttributes at line 416
bool
validateConfirmed(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute has a matching confirmation.
in
ValidatesAttributes at line 426
bool
validateContains(string $attribute, mixed $value, mixed $parameters)
Validate an attribute contains a list of values.
in
ValidatesAttributes at line 446
bool
validateDoesntContain(string $attribute, mixed $value, mixed $parameters)
Validate an attribute does not contain a list of values.
in
ValidatesAttributes at line 466
protected bool
validateCurrentPassword(string $attribute, mixed $value, mixed $parameters)
Validate that the password of the currently authenticated user matches the given value.
in
ValidatesAttributes at line 483
bool
validateDate(string $attribute, mixed $value)
Validate that an attribute is a valid date.
in
ValidatesAttributes at line 495
protected bool
isValidDate(mixed $value)
Determine if a value is a valid date.
Accepts DateTimeInterface instances, numeric timestamps, and string date representations. Validates via strtotime() and date_parse() + checkdate() to reject dates like February 30th.
in
ValidatesAttributes at line 519
bool
validateDateFormat(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute matches a date format.
in
ValidatesAttributes at line 542
protected bool
matchesDateFormat(mixed $value, string $format)
Determine if a value matches a specific date format.
Creates a DateTime from the format and verifies round-trip formatting produces the same string. Catches ValueError for invalid format strings.
in
ValidatesAttributes at line 562
bool
validateDateEquals(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is equal to another date.
in
ValidatesAttributes at line 574
bool
validateDecimal(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute has a given number of decimal places.
in
ValidatesAttributes at line 603
bool
validateDifferent(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is different from another attribute.
in
ValidatesAttributes at line 625
bool
validateDigits(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute has a given number of digits.
in
ValidatesAttributes at line 640
bool
validateDigitsBetween(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is between a given number of digits.
in
ValidatesAttributes at line 655
bool
validateDimensions(string $attribute, mixed $value, mixed $parameters)
Validate the dimensions of an image matches the given values.
in
ValidatesAttributes at line 692
protected bool
failsBasicDimensionChecks(array $parameters, int $width, int $height)
Test if the given width and height fail any conditions.
in
ValidatesAttributes at line 705
protected bool
failsRatioCheck(array $parameters, int $width, int $height)
Determine if the given parameters fail a dimension ratio check.
in
ValidatesAttributes at line 760
bool
validateDistinct(string $attribute, mixed $value, mixed $parameters)
Validate an attribute is unique among other values.
in
ValidatesAttributes at line 774
protected array
getDistinctValues(string $attribute)
Get the values to distinct between.
in
ValidatesAttributes at line 793
protected array
extractDistinctValues(string $attribute)
Extract the distinct values from the data.
in
ValidatesAttributes at line 812
bool
validateEmail(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is a valid e-mail address.
in
ValidatesAttributes at line 844
protected bool
isValidEmail(string $value)
Determine if a value is a valid email address using basic RFC validation.
Used by the inline check for the bare email rule token. The
parameterized form (email:rfc,dns,spoof,filter,...) stays in
validateEmail() and flows through the delegated path.
in
ValidatesAttributes at line 854
bool
validateEncoding(string $attribute, mixed $value, array $parameters)
Validate that a value has a specific character encoding.
in
ValidatesAttributes at line 870
bool
validateExists(string $attribute, mixed $value, mixed $parameters)
Validate the existence of an attribute value in a database table.
in
ValidatesAttributes at line 901
protected int
getExistCount(mixed $connection, string $table, string $column, mixed $value, array $parameters)
Get the number of records that exist in storage.
in
ValidatesAttributes at line 925
bool
validateUnique(string $attribute, mixed $value, mixed $parameters)
Validate the uniqueness of an attribute value on a given database table.
If a database column is not specified, the attribute will be used.
in
ValidatesAttributes at line 972
protected array
getUniqueIds(string|null $idColumn, array $parameters)
Get the excluded ID column and value for the unique rule.
in
ValidatesAttributes at line 982
protected int|string|null
prepareUniqueId(mixed $id)
Prepare the given ID for querying.
in
ValidatesAttributes at line 1004
protected array
getUniqueExtra(array $parameters)
Get the extra conditions for a unique rule.
in
ValidatesAttributes at line 1016
array
parseTable(string $table)
Parse the connection / table for the unique / exists rules.
in
ValidatesAttributes at line 1039
bool|string
getQueryColumn(array $parameters, string $attribute)
Get the column name for an exists / unique query.
in
ValidatesAttributes at line 1049
string
guessColumnForQuery(string $attribute)
Guess the database column from the given attribute name.
in
ValidatesAttributes at line 1063
protected array
getExtraConditions(array $segments)
Get the extra conditions for a unique / exists rule.
in
ValidatesAttributes at line 1081
bool
validateExtensions(string $attribute, mixed $value, array $parameters)
Validate the extension of a file upload attribute is in a set of defined extensions.
in
ValidatesAttributes at line 1097
bool
validateFile(string $attribute, mixed $value)
Validate the given value is a valid file.
in
ValidatesAttributes at line 1105
bool
validateFilled(string $attribute, mixed $value)
Validate the given attribute is filled if it is present.
in
ValidatesAttributes at line 1119
bool
validateGt(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is greater than another attribute.
in
ValidatesAttributes at line 1151
bool
validateLt(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is less than another attribute.
in
ValidatesAttributes at line 1183
bool
validateGte(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is greater than or equal another attribute.
in
ValidatesAttributes at line 1215
bool
validateLte(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is less than or equal another attribute.
in
ValidatesAttributes at line 1247
bool
validateLowercase(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is lowercase.
in
ValidatesAttributes at line 1259
bool
validateUppercase(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is uppercase.
in
ValidatesAttributes at line 1269
bool
validateHexColor(string $attribute, mixed $value)
Validate that an attribute is a valid HEX color.
in
ValidatesAttributes at line 1277
bool
validateImage(string $attribute, mixed $value, array $parameters = [])
Validate the MIME type of a file is an image MIME type.
in
ValidatesAttributes at line 1293
bool
validateIn(string $attribute, mixed $value, mixed $parameters)
Validate an attribute is contained within a list of values.
in
ValidatesAttributes at line 1313
bool
validateInArray(string $attribute, mixed $value, mixed $parameters)
Validate that the values of an attribute are in another attribute.
in
ValidatesAttributes at line 1331
bool
validateInArrayKeys(string $attribute, mixed $value, array $parameters)
Validate that an array contains at least one of the given keys.
in
ValidatesAttributes at line 1353
bool
validateInteger(string $attribute, mixed $value, array $parameters = [])
Validate that an attribute is an integer.
in
ValidatesAttributes at line 1365
bool
validateIp(string $attribute, mixed $value)
Validate that an attribute is a valid IP.
in
ValidatesAttributes at line 1373
bool
validateIpv4(string $attribute, mixed $value)
Validate that an attribute is a valid IPv4.
in
ValidatesAttributes at line 1381
bool
validateIpv6(string $attribute, mixed $value)
Validate that an attribute is a valid IPv6.
in
ValidatesAttributes at line 1389
protected bool
isValidIp(string $value)
Determine if a value is a valid IP address (any version).
in
ValidatesAttributes at line 1397
protected bool
isValidIpv4(string $value)
Determine if a value is a valid IPv4 address.
in
ValidatesAttributes at line 1405
protected bool
isValidIpv6(string $value)
Determine if a value is a valid IPv6 address.
in
ValidatesAttributes at line 1413
bool
validateMacAddress(string $attribute, mixed $value)
Validate that an attribute is a valid MAC address.
in
ValidatesAttributes at line 1421
bool
validateJson(string $attribute, mixed $value)
Validate the attribute is a valid JSON string.
in
ValidatesAttributes at line 1446
bool
validateMax(string $attribute, mixed $value, mixed $parameters)
Validate the size of an attribute is less than or equal to a maximum value.
in
ValidatesAttributes at line 1462
bool
validateMaxDigits(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute has a maximum number of digits.
in
ValidatesAttributes at line 1476
bool
validateMimes(string $attribute, mixed $value, mixed $parameters)
Validate the guessed extension of a file upload is in a set of file extensions.
in
ValidatesAttributes at line 1498
bool
validateMimetypes(string $attribute, mixed $value, mixed $parameters)
Validate the MIME type of a file upload attribute is in a set of MIME types.
in
ValidatesAttributes at line 1518
protected bool
shouldBlockPhpUpload(mixed $value, array $parameters)
Check if PHP uploads are explicitly allowed.
in
ValidatesAttributes at line 1545
bool
validateMin(string $attribute, mixed $value, mixed $parameters)
Validate the size of an attribute is greater than or equal to a minimum value.
in
ValidatesAttributes at line 1557
bool
validateMinDigits(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute has a minimum number of digits.
in
ValidatesAttributes at line 1573
bool
validateMissing(mixed $attribute, mixed $value, array<int, int|string> $parameters)
Validate that an attribute is missing.
in
ValidatesAttributes at line 1583
bool
validateMissingIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is missing when another attribute has a given value.
in
ValidatesAttributes at line 1601
bool
validateMissingUnless(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is missing unless another attribute has a given value.
in
ValidatesAttributes at line 1619
bool
validateMissingWith(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is missing when any given attribute is present.
in
ValidatesAttributes at line 1635
bool
validateMissingWithAll(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is missing when all given attributes are present.
in
ValidatesAttributes at line 1651
bool
validateMultipleOf(string $attribute, mixed $value, mixed $parameters)
Validate the value of an attribute is a multiple of a given value.
in
ValidatesAttributes at line 1667
protected bool
isMultipleOf(mixed $value, mixed $divisor)
Determine if a value is an exact multiple of a divisor.
Uses BigDecimal remainder for arbitrary-precision comparison. Both value and divisor must be numeric; the exception translation wrapping stays in the caller (validateMultipleOf) for non-numeric cases, but the BigDecimal exception is thrown from here since that's where the math operation lives.
in
ValidatesAttributes at line 1700
bool
validateNullable()
"Indicate" validation should pass if value is null.
Always returns true, just lets us put "nullable" in rules.
in
ValidatesAttributes at line 1710
bool
validateNotIn(string $attribute, mixed $value, mixed $parameters)
Validate an attribute is not contained within a list of values.
in
ValidatesAttributes at line 1718
bool
validateNumeric(string $attribute, mixed $value, array $parameters = [])
Validate that an attribute is numeric.
in
ValidatesAttributes at line 1730
bool
validatePresent(string $attribute, mixed $value)
Validate that an attribute exists even if not filled.
in
ValidatesAttributes at line 1740
bool
validatePresentIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is present when another attribute has a given value.
in
ValidatesAttributes at line 1758
bool
validatePresentUnless(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is present unless another attribute has a given value.
in
ValidatesAttributes at line 1776
bool
validatePresentWith(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is present when any given attribute is present.
in
ValidatesAttributes at line 1792
bool
validatePresentWithAll(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is present when all given attributes are present.
in
ValidatesAttributes at line 1808
bool
validateRegex(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute passes a regular expression check.
in
ValidatesAttributes at line 1824
bool
validateNotRegex(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute does not pass a regular expression check.
in
ValidatesAttributes at line 1838
bool
validateRequired(string $attribute, mixed $value)
Validate that a required attribute exists.
in
ValidatesAttributes at line 1859
bool
validateRequiredIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when another attribute has a given value.
in
ValidatesAttributes at line 1879
bool
validateRequiredIfAccepted(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when another attribute was "accepted".
in
ValidatesAttributes at line 1893
bool
validateRequiredIfDeclined(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when another attribute was "declined".
in
ValidatesAttributes at line 1907
bool
validateProhibited(string $attribute, mixed $value)
Validate that an attribute does not exist or is an empty string.
in
ValidatesAttributes at line 1915
bool
validateProhibitedIf(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute does not exist when another attribute has a given value.
in
ValidatesAttributes at line 1931
bool
validateProhibitedIfAccepted(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute does not exist when another attribute was "accepted".
in
ValidatesAttributes at line 1945
bool
validateProhibitedIfDeclined(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute does not exist when another attribute was "declined".
in
ValidatesAttributes at line 1959
bool
validateProhibitedUnless(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute does not exist unless another attribute has a given value.
in
ValidatesAttributes at line 1975
bool
validateProhibits(string $attribute, mixed $value, mixed $parameters)
Validate that other attributes do not exist when this attribute exists.
in
ValidatesAttributes at line 1991
bool
validateExclude()
Indicate that an attribute is excluded.
in
ValidatesAttributes at line 1999
bool
validateExcludeIf(string $attribute, mixed $value, mixed $parameters)
Indicate that an attribute should be excluded when another attribute has a given value.
in
ValidatesAttributes at line 2015
bool
validateExcludeUnless(string $attribute, mixed $value, mixed $parameters)
Indicate that an attribute should be excluded when another attribute does not have a given value.
in
ValidatesAttributes at line 2027
bool
validateRequiredUnless(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when another attribute does not have a given value.
in
ValidatesAttributes at line 2043
bool
validateExcludeWith(string $attribute, mixed $value, mixed $parameters)
Indicate that an attribute should be excluded when another attribute presents.
in
ValidatesAttributes at line 2057
bool
validateExcludeWithout(string $attribute, mixed $value, mixed $parameters)
Indicate that an attribute should be excluded when another attribute is missing.
in
ValidatesAttributes at line 2073
array
parseDependentRuleParameters(array $parameters)
Prepare the values and the other value for validation.
in
ValidatesAttributes at line 2093
protected bool
shouldConvertToBoolean(string $parameter)
Check if parameter should be converted to boolean.
in
ValidatesAttributes at line 2101
protected array
convertValuesToBoolean(array $values)
Convert the given values to boolean if they are string "true" / "false".
in
ValidatesAttributes at line 2118
protected array
convertValuesToNull(array $values)
Convert the given values to null if they are string "null".
in
ValidatesAttributes at line 2128
bool
validateRequiredWith(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when any other attribute exists.
in
ValidatesAttributes at line 2140
bool
validateRequiredWithAll(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when all other attributes exist.
in
ValidatesAttributes at line 2152
bool
validateRequiredWithout(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when another attribute does not.
in
ValidatesAttributes at line 2164
bool
validateRequiredWithoutAll(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute exists when all other attributes do not.
in
ValidatesAttributes at line 2176
protected bool
anyFailingRequired(array $attributes)
Determine if any of the given attributes fail the required test.
in
ValidatesAttributes at line 2190
protected bool
allFailingRequired(array $attributes)
Determine if all of the given attributes fail the required test.
in
ValidatesAttributes at line 2206
bool
validateSame(string $attribute, mixed $value, mixed $parameters)
Validate that two attributes match.
in
ValidatesAttributes at line 2220
bool
validateSize(string $attribute, mixed $value, mixed $parameters)
Validate the size of an attribute.
in
ValidatesAttributes at line 2232
bool
validateSometimes()
"Validate" optional attributes.
Always returns true, just lets us put sometimes in rules.
in
ValidatesAttributes at line 2242
bool
validateStartsWith(string $attribute, mixed $value, mixed $parameters)
Validate the attribute starts with a given substring.
in
ValidatesAttributes at line 2252
bool
validateDoesntStartWith(string $attribute, mixed $value, mixed $parameters)
Validate the attribute does not start with a given substring.
in
ValidatesAttributes at line 2262
bool
validateEndsWith(string $attribute, mixed $value, mixed $parameters)
Validate the attribute ends with a given substring.
in
ValidatesAttributes at line 2272
bool
validateDoesntEndWith(string $attribute, mixed $value, mixed $parameters)
Validate the attribute does not end with a given substring.
in
ValidatesAttributes at line 2280
bool
validateString(string $attribute, mixed $value)
Validate that an attribute is a string.
in
ValidatesAttributes at line 2288
bool
validateTimezone(string $attribute, mixed $value, array $parameters = [])
Validate that an attribute is a valid timezone.
in
ValidatesAttributes at line 2299
bool
validateUrl(string $attribute, mixed $value, array $parameters = [])
Validate that an attribute is a valid URL.
in
ValidatesAttributes at line 2307
bool
validateUlid(string $attribute, mixed $value)
Validate that an attribute is a valid ULID.
in
ValidatesAttributes at line 2315
protected bool
isValidUlid(string $value)
Determine if a value is a valid ULID.
in
ValidatesAttributes at line 2325
bool
validateUuid(string $attribute, mixed $value, mixed $parameters)
Validate that an attribute is a valid UUID.
in
ValidatesAttributes at line 2347
protected bool
isValidUuid(string $value)
Determine if a value is a valid UUID (any version).
Used by the inline check for the bare uuid rule token. The
parameterized form (uuid:4, uuid:max) stays in validateUuid()
and flows through the delegated path.
in
ValidatesAttributes at line 2355
protected float|int|string
getSize(string $attribute, mixed $value)
Get the size of an attribute.
in
ValidatesAttributes at line 2389
protected float|int|string
sizeOf(mixed $value, SizeMode $mode)
Compute a value's "size" given a pre-resolved mode.
Mirrors getSize() but takes an explicit SizeMode instead of scanning sibling rules at runtime. Uses value-first dispatch: when mode is Numeric AND the value is numeric, returns the trimmed numeric value; otherwise falls through to array count / file size / string length.
This ordering is load-bearing: a mode-first version would throw
NumberFormatException when a min:X|numeric rule runs before the
numeric type check with a non-numeric value (e.g., 'abc'). getSize()
falls back to string length in that situation; this helper must match.
in
ValidatesAttributes at line 2409
bool
isValidFileInstance(mixed $value)
Check that the given value is a valid file instance.
in
ValidatesAttributes at line 2423
protected bool
compare(mixed $first, mixed $second, string $operator)
Determine if a comparison passes between the given values.
in
ValidatesAttributes at line 2440
array|null
parseNamedParameters(array $parameters)
Parse named parameters to $key => $value items.
in
ValidatesAttributes at line 2456
void
requireParameterCount(int $count, array $parameters, string $rule)
Require a certain number of parameters to be present.
in
ValidatesAttributes at line 2466
protected bool
isSameType(mixed $first, mixed $second)
Check if the parameters are of the same type.
in
ValidatesAttributes at line 2474
protected void
shouldBeNumeric(string $attribute, string $rule)
Adds the existing rule to the numericRules array if the attribute's value is numeric.
in
ValidatesAttributes at line 2484
protected mixed
trim(mixed $value)
Trim the value if it is a string.
in
ValidatesAttributes at line 2492
protected mixed
ensureExponentWithinAllowedRange(string $attribute, mixed $value)
Ensure the exponent is within the allowed range.
in
PlanExecutor at line 63
protected void
executeCompiledPlans(array $compiledPlans)
Execute all compiled plans against the validation data.
This is the ONLY execution path — every rule (inline or delegated) flows through this loop. Per-check fresh reads of $value and $exists match validateAttribute()'s per-rule getValue() call.
in
PlanExecutor at line 142
protected bool
executeInline(InlineCheck $check, mixed $value, string $attribute)
Execute an inline check against a value.
Dispatches via exhaustive match over CheckType — no default arm. Adding a CheckType case without a handler here fails PHPStan and throws UnhandledMatchError at runtime. Silent passes are impossible.
Each arm replicates the exact logic of the corresponding validate*() method in ValidatesAttributes, but without parameter parsing, attribute context lookups, or dynamic method dispatch.
in
Validator at line 325
__construct(Translator $translator, array $data, array $rules, array $messages = [], array $attributes = [])
Create a new Validator instance.
in
Validator at line 347
array
parseData(array $data)
Parse the data array, converting dots and asterisks.
in
Validator at line 372
protected array
replacePlaceholders(array $data)
Replace the placeholders used in data keys.
in
Validator at line 388
protected string
replacePlaceholderInString(string $value)
Replace the placeholders in the given string.
in
Validator at line 400
protected array
replaceDotPlaceholderInParameters(array $parameters)
Replace each field parameter dot placeholder with dot.
in
Validator at line 410
Validator
after(callable|string $callback)
Add an after validation callback.
at line 287
bool
passes()
Determine if the data passes the validation rules using the legacy path.
in
Validator at line 502
protected array
compileRules()
Compile all attribute rules into AttributePlans.
For the base Validator class, rules are compiled with inlining and cached worker-lifetime. Subclasses compile everything as DelegatedCheck to preserve validate*() overrides.
in
Validator at line 544
protected bool
compiledPlansContainValidatorAwareRules()
Determine if any compiled plan contains a ValidatorAwareRule.
ValidatorAwareRule implementations receive the live validator via setValidator($this) and can mutate $this->data via setValue()/setData(). This makes pre-evaluation of exclude conditions unsafe because the pre-pass reads data before execution.
in
Validator at line 565
protected void
preEvaluateExclusions()
Pre-evaluate exclude_unless / exclude_if conditions before the main loop.
Only called when $canPreOptimize is true (base Validator, no extensions, no rule objects). Handles both string form ('exclude_unless:field,value') and array-tuple form. Safety-skips rules requiring parseDependentRuleParameters type conversions so they flow through the normal delegated path.
in
Validator at line 688
protected void
maybeBatchDatabaseChecks()
Build a PrecomputedPresenceVerifier for wildcard-expanded exists/unique rules by batching their lookups into single whereIn queries.
Scans rules using the validator's own parsing methods (parseTable, getQueryColumn, getExtraConditions, getUniqueIds) so all rule forms (string, array, object) and table specifications (plain, model class, connection-prefixed) are handled correctly with zero duplication.
in
Validator at line 995
bool
fails()
Determine if the data fails the validation rules.
in
Validator at line 1003
mixed
whenPasses(callable $callback, callable|null $default = null)
Execute the callback if the data passes the validation rules.
in
Validator at line 1018
mixed
whenFails(callable $callback, callable|null $default = null)
Execute the callback if the data fails the validation rules.
in
Validator at line 1033
protected bool
shouldBeExcluded(string $attribute)
Determine if the attribute should be excluded.
in
Validator at line 1073
protected void
removeAttribute(string $attribute)
Remove the given attribute.
in
Validator at line 1084
array
validate()
Run the validator's rules against its data.
in
Validator at line 1096
array
validateWithBag(string $errorBag)
Run the validator's rules against its data.
in
Validator at line 1110
array|ValidatedInput
safe(array|null $keys = null)
Get a validated input container for the validated input.
in
Validator at line 1122
array
validated()
Get the attributes and values that were validated.
in
Validator at line 1157
protected void
validateAttribute(string $attribute, array|object|string $rule)
Validate a given attribute against a rule.
in
Validator at line 1214
protected bool
dependsOnOtherFields(object|string $rule)
Determine if the given rule depends on other fields.
in
Validator at line 1224
protected array
getExplicitKeys(string $attribute)
Get the explicit keys from an attribute flattened with dot notation.
E.g. 'foo.1.bar.spark.baz' -> [1, 'spark'] for 'foo..bar..baz'
in
Validator at line 1242
protected string
getPrimaryAttribute(string $attribute)
Get the primary attribute name.
For example, if "name.0" is given, "name.*" will be returned.
in
Validator at line 1270
protected array
replaceDotInParameters(array $parameters)
Replace each field parameter which has an escaped dot with the dot placeholder.
in
Validator at line 1280
protected array
replaceAsterisksInParameters(array $parameters, array $keys)
Replace each field parameter which has asterisks with the given keys.
in
Validator at line 1290
protected bool
isValidatable(object|string $rule, string $attribute, mixed $value)
Determine if the attribute is validatable.
in
Validator at line 1305
protected bool
presentOrRuleIsImplicit(object|string $rule, string $attribute, mixed $value)
Determine if the field is present, or the rule implies required.
in
Validator at line 1322
protected bool
isImplicit(object|string $rule)
Determine if a given rule implies the attribute is required.
in
Validator at line 1331
protected bool
passesOptionalCheck(string $attribute)
Determine if the attribute passes any optional check.
in
Validator at line 1351
protected bool
isNotNullIfMarkedAsNullable(object|string $rule, string $attribute)
Determine if the attribute fails the nullable check.
in
Validator at line 1374
protected bool
hasNotFailedPreviousRuleIfPresenceRule(object|string $rule, string $attribute)
Determine if it's a necessary presence validation.
This is to avoid possible database type comparison errors.
in
Validator at line 1382
protected void
validateUsingCustomRule(string $attribute, mixed $value, Rule $rule)
Validate an attribute using a custom rule object.
in
Validator at line 1436
protected bool
shouldStopValidating(string $attribute)
Check if we should stop further validations on a given attribute.
in
Validator at line 1462
void
addFailure(string $attribute, string $rule, array $parameters = [])
Add a failed rule and error message to the collection.
in
Validator at line 1494
protected void
excludeAttribute(string $attribute)
Add the given attribute to the list of excluded attributes.
in
Validator at line 1504
array
valid()
Returns the data which was valid.
in
Validator at line 1519
array
invalid()
Returns the data which was invalid.
in
Validator at line 1544
protected array
attributesThatHaveMessages()
Generate an array of all attributes that have messages.
in
Validator at line 1556
array
failed()
Get the failed validation rules.
in
Validator at line 1564
MessageBag
messages()
Get the message container for the validator.
in
Validator at line 1576
MessageBag
errors()
An alternative more semantic shortcut to the message container.
in
Validator at line 1584
MessageBag
getMessageBag()
Get the messages for the instance.
in
Validator at line 1592
bool
hasRule(string $attribute, array|string $rules)
Determine if the given attribute has a rule in the given set.
in
Validator at line 1600
protected array|null
getRule(string $attribute, array|string $rules)
Get a rule and its parameters for a given attribute.
in
Validator at line 1622
array
attributes()
Get the data under validation.
in
Validator at line 1630
array
getData()
Get the data under validation.
in
Validator at line 1650
mixed
getValue(string $attribute)
Get the value of a given attribute.
in
Validator at line 1658
void
setValue(string $attribute, mixed $value)
Set the value of a given attribute.
in
Validator at line 1666
array
getRules()
Get the validation rules.
in
Validator at line 1674
array
getRulesWithoutPlaceholders()
Get the validation rules with key placeholders removed.
in
Validator at line 1704
Validator
appendRules(array $rules)
Append new validation rules to the validator.
at line 269
void
addRules(array $rules)
Override addRules to use the legacy O(n²) wildcard expansion parser.
in
Validator at line 1739
Validator
sometimes(array|string $attribute, array|string $rules, callable $callback)
Add conditions to a given field based on a Closure.
in
Validator at line 1780
Validator
stopOnFirstFailure(bool $stopOnFirstFailure = true)
Instruct the validator to stop validating after the first rule failure.
in
Validator at line 1790
void
addExtensions(array $extensions)
Register an array of custom validator extensions.
in
Validator at line 1804
void
addImplicitExtensions(array $extensions)
Register an array of custom implicit validator extensions.
in
Validator at line 1816
void
addDependentExtensions(array $extensions)
Register an array of custom dependent validator extensions.
in
Validator at line 1828
void
addExtension(string $rule, Closure|string $extension)
Register a custom validator extension.
in
Validator at line 1836
void
addImplicitExtension(string $rule, Closure|string $extension)
Register a custom implicit validator extension.
in
Validator at line 1846
void
addDependentExtension(string $rule, Closure|string $extension)
Register a custom dependent validator extension.
in
Validator at line 1856
void
addReplacers(array $replacers)
Register an array of custom validator message replacers.
in
Validator at line 1870
void
addReplacer(string $rule, Closure|string $replacer)
Register a custom validator message replacer.
in
Validator at line 1878
Validator
setCustomMessages(array $messages)
Set the custom messages for the validator.
in
Validator at line 1888
Validator
setAttributeNames(array $attributes)
Set the custom attributes on the validator.
in
Validator at line 1898
Validator
addCustomAttributes(array $attributes)
Add custom attributes to the validator.
in
Validator at line 1908
Validator
setImplicitAttributesFormatter(callable|null $formatter = null)
Set the callback that used to format an implicit attribute.
in
Validator at line 1918
Validator
setValueNames(array $values)
Set the custom values on the validator.
in
Validator at line 1928
Validator
addCustomValues(array $customValues)
Add the custom values for the validator.
in
Validator at line 1938
void
setFallbackMessages(array $messages)
Set the fallback messages for the validator.
in
Validator at line 1948
PresenceVerifierInterface
getPresenceVerifier(string|null $connection = null)
Get the Presence Verifier implementation.
in
Validator at line 1967
void
setPresenceVerifier(PresenceVerifierInterface $presenceVerifier)
Set the Presence Verifier implementation.
in
Validator at line 1977
string
getException()
Get the exception to throw upon failed validation.
in
Validator at line 1989
Validator
setException(string|Throwable $exception)
Set the exception to throw upon failed validation.
in
Validator at line 2005
Validator
ensureExponentWithinAllowedRangeUsing(Closure $callback)
Ensure exponents are within range using the given callback.
in
Validator at line 2015
Translator
getTranslator()
Get the Translator implementation.
in
Validator at line 2023
void
setTranslator(Translator $translator)
Set the Translator implementation.
in
Validator at line 2039
protected bool|null
callExtension(string $rule, array $parameters)
Call a custom validator extension.
in
Validator at line 2056
protected bool
callClassBasedExtension(string $callback, array $parameters)
Call a class based validator extension.
in
Validator at line 2068
static protected string
encodeAttributeWithPlaceholder(string $attribute)
Encode the attribute with the placeholder hash.
in
Validator at line 2076
static protected string
decodeAttributeWithPlaceholder(string $attribute)
Decode an attribute with a placeholder hash.
in
Validator at line 2084
static void
flushState()
Flush all static state.
in
Validator at line 2094
mixed
__call(string $method, array $parameters)
Handle dynamic calls to class methods.