Methods |
public
|
validateAccepted(string $attribute, mixed $value): bool
Validate that an attribute was "accepted".
Validate that an attribute was "accepted".
This validation rule implies the attribute is "required".
|
#
|
public
|
validateAcceptedIf(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute was "accepted" when another attribute has a given value.
Validate that an attribute was "accepted" when another attribute has a given value.
|
#
|
public
|
validateDeclined(string $attribute, mixed $value): bool
Validate that an attribute was "declined".
Validate that an attribute was "declined".
This validation rule implies the attribute is "required".
|
#
|
public
|
validateDeclinedIf(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute was "declined" when another attribute has a given value.
Validate that an attribute was "declined" when another attribute has a given value.
|
#
|
public
|
validateActiveUrl(string $attribute, mixed $value): bool
Validate that an attribute is an active URL.
Validate that an attribute is an active URL.
|
#
|
protected
|
getDnsRecords(string $hostname, int $type): array|false
Get the DNS records for the given hostname.
Get the DNS records for the given hostname.
|
#
|
public
|
validateAscii(string $attribute, mixed $value): bool
Validate that an attribute is 7 bit ASCII.
Validate that an attribute is 7 bit ASCII.
|
#
|
public
|
validateBail(): bool
"Break" on first validation fail.
"Break" on first validation fail.
Always returns true, just lets us put "bail" in rules.
|
#
|
public
|
validateBefore(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the date is before a given date.
Validate the date is before a given date.
|
#
|
public
|
validateBeforeOrEqual(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the date is before or equal a given date.
Validate the date is before or equal a given date.
|
#
|
public
|
validateAfter(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the date is after a given date.
Validate the date is after a given date.
|
#
|
public
|
validateAfterOrEqual(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the date is equal or after a given date.
Validate the date is equal or after a given date.
|
#
|
protected
|
compareDates(string $attribute, mixed $value, array<int, int|string> $parameters, string $operator): bool
Compare a given date against another using an operator.
Compare a given date against another using an operator.
|
#
|
protected
|
getDateFormat(string $attribute): string|null
Get the date format for an attribute if it has one.
Get the date format for an attribute if it has one.
|
#
|
protected
|
getDateTimestamp(mixed $value): int
Get the date timestamp.
|
#
|
protected
|
checkDateTimeOrder(string $format, string $first, string $second, string $operator): bool
Given two date/time strings, check that one is after the other.
Given two date/time strings, check that one is after the other.
|
#
|
protected
|
getDateTimeWithOptionalFormat(string $format, string $value): DateTime|null
Get a DateTime instance from a string.
Get a DateTime instance from a string.
|
#
|
protected
|
getDateTime(string $value): DateTime|null
Get a DateTime instance from a string with no format.
Get a DateTime instance from a string with no format.
|
#
|
public
|
validateAlpha(string $attribute, mixed $value, $parameters): bool
Validate that an attribute contains only alphabetic characters.
If the 'ascii' option is passed, validate that an…
Validate that an attribute contains only alphabetic characters.
If the 'ascii' option is passed, validate that an attribute contains only ascii alphabetic characters.
|
#
|
public
|
validateAlphaDash(string $attribute, mixed $value, $parameters): bool
Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
If the 'ascii' option is…
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.
|
#
|
public
|
validateAlphaNum(string $attribute, mixed $value, $parameters): bool
Validate that an attribute contains only alpha-numeric characters.
If the 'ascii' option is passed, validate that an…
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.
|
#
|
public
|
validateArray(string $attribute, mixed $value, array<int, int|string> $parameters = []): bool
Validate that an attribute is an array.
Validate that an attribute is an array.
|
#
|
public
|
validateList(string $attribute, mixed $value): bool
Validate that an attribute is a list.
Validate that an attribute is a list.
|
#
|
public
|
validateRequiredArrayKeys(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an array has all of the given keys.
Validate that an array has all of the given keys.
|
#
|
public
|
validateBetween(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the size of an attribute is between a set of values.
Validate the size of an attribute is between a set of values.
|
#
|
public
|
validateBoolean(string $attribute, mixed $value): bool
Validate that an attribute is a boolean.
Validate that an attribute is a boolean.
|
#
|
public
|
validateConfirmed(string $attribute, mixed $value, array{0: string} $parameters): bool
Validate that an attribute has a matching confirmation.
Validate that an attribute has a matching confirmation.
|
#
|
public
|
validateContains(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate an attribute contains a list of values.
Validate an attribute contains a list of values.
|
#
|
protected
|
validateCurrentPassword(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that the password of the currently authenticated user matches the given value.
Validate that the password of the currently authenticated user matches the given value.
|
#
|
public
|
validateDate(string $attribute, mixed $value): bool
Validate that an attribute is a valid date.
Validate that an attribute is a valid date.
|
#
|
public
|
validateDateFormat(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute matches a date format.
Validate that an attribute matches a date format.
|
#
|
public
|
validateDateEquals(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is equal to another date.
Validate that an attribute is equal to another date.
|
#
|
public
|
validateDecimal(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute has a given number of decimal places.
Validate that an attribute has a given number of decimal places.
|
#
|
public
|
validateDifferent(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is different from another attribute.
Validate that an attribute is different from another attribute.
|
#
|
public
|
validateDigits(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute has a given number of digits.
Validate that an attribute has a given number of digits.
|
#
|
public
|
validateDigitsBetween(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is between a given number of digits.
Validate that an attribute is between a given number of digits.
|
#
|
public
|
validateDimensions(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the dimensions of an image matches the given values.
Validate the dimensions of an image matches the given values.
|
#
|
protected
|
failsBasicDimensionChecks(array<string, string> $parameters, int $width, int $height): bool
Test if the given width and height fail any conditions.
Test if the given width and height fail any conditions.
|
#
|
protected
|
failsRatioCheck(array<string, string> $parameters, int $width, int $height): bool
Determine if the given parameters fail a dimension ratio check.
Determine if the given parameters fail a dimension ratio check.
|
#
|
public
|
validateDistinct(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate an attribute is unique among other values.
Validate an attribute is unique among other values.
|
#
|
protected
|
getDistinctValues(string $attribute): array
Get the values to distinct between.
Get the values to distinct between.
|
#
|
protected
|
extractDistinctValues(string $attribute): array
Extract the distinct values from the data.
Extract the distinct values from the data.
|
#
|
public
|
validateEmail(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is a valid e-mail address.
Validate that an attribute is a valid e-mail address.
|
#
|
public
|
validateExists(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the existence of an attribute value in a database table.
Validate the existence of an attribute value in a database table.
|
#
|
protected
|
getExistCount(mixed $connection, string $table, string $column, mixed $value, array<int, int|string> $parameters): int
Get the number of records that exist in storage.
Get the number of records that exist in storage.
|
#
|
public
|
validateUnique(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the uniqueness of an attribute value on a given database table.
Validate the uniqueness of an attribute value on a given database table.
If a database column is not specified, the attribute will be used.
|
#
|
protected
|
getUniqueIds(string|null $idColumn, array<int, int|string> $parameters): array
Get the excluded ID column and value for the unique rule.
Get the excluded ID column and value for the unique rule.
|
#
|
protected
|
prepareUniqueId(mixed $id): int
Prepare the given ID for querying.
Prepare the given ID for querying.
|
#
|
protected
|
getUniqueExtra(array<int, int|string> $parameters): array
Get the extra conditions for a unique rule.
Get the extra conditions for a unique rule.
|
#
|
public
|
parseTable(string $table): array
Parse the connection / table for the unique / exists rules.
Parse the connection / table for the unique / exists rules.
|
#
|
public
|
getQueryColumn(array<int, int|string> $parameters, string $attribute): bool
Get the column name for an exists / unique query.
Get the column name for an exists / unique query.
|
#
|
public
|
guessColumnForQuery(string $attribute): string
Guess the database column from the given attribute name.
Guess the database column from the given attribute name.
|
#
|
protected
|
getExtraConditions(array $segments): array
Get the extra conditions for a unique / exists rule.
Get the extra conditions for a unique / exists rule.
|
#
|
public
|
validateExtensions(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the extension of a file upload attribute is in a set of defined extensions.
Validate the extension of a file upload attribute is in a set of defined extensions.
|
#
|
public
|
validateFile(string $attribute, mixed $value): bool
Validate the given value is a valid file.
Validate the given value is a valid file.
|
#
|
public
|
validateFilled(string $attribute, mixed $value): bool
Validate the given attribute is filled if it is present.
Validate the given attribute is filled if it is present.
|
#
|
public
|
validateGt(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is greater than another attribute.
Validate that an attribute is greater than another attribute.
|
#
|
public
|
validateLt(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is less than another attribute.
Validate that an attribute is less than another attribute.
|
#
|
public
|
validateGte(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is greater than or equal another attribute.
Validate that an attribute is greater than or equal another attribute.
|
#
|
public
|
validateLte(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is less than or equal another attribute.
Validate that an attribute is less than or equal another attribute.
|
#
|
public
|
validateLowercase(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is lowercase.
Validate that an attribute is lowercase.
|
#
|
public
|
validateUppercase(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is uppercase.
Validate that an attribute is uppercase.
|
#
|
public
|
validateHexColor(string $attribute, mixed $value): bool
Validate that an attribute is a valid HEX color.
Validate that an attribute is a valid HEX color.
|
#
|
public
|
validateImage(string $attribute, mixed $value, array<int, string> $parameters = []): bool
Validate the MIME type of a file is an image MIME type.
Validate the MIME type of a file is an image MIME type.
|
#
|
public
|
validateIn(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate an attribute is contained within a list of values.
Validate an attribute is contained within a list of values.
|
#
|
public
|
validateInArray(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that the values of an attribute are in another attribute.
Validate that the values of an attribute are in another attribute.
|
#
|
public
|
validateInteger(string $attribute, mixed $value): bool
Validate that an attribute is an integer.
Validate that an attribute is an integer.
|
#
|
public
|
validateIp(string $attribute, mixed $value): bool
Validate that an attribute is a valid IP.
Validate that an attribute is a valid IP.
|
#
|
public
|
validateIpv4(string $attribute, mixed $value): bool
Validate that an attribute is a valid IPv4.
Validate that an attribute is a valid IPv4.
|
#
|
public
|
validateIpv6(string $attribute, mixed $value): bool
Validate that an attribute is a valid IPv6.
Validate that an attribute is a valid IPv6.
|
#
|
public
|
validateMacAddress(string $attribute, mixed $value): bool
Validate that an attribute is a valid MAC address.
Validate that an attribute is a valid MAC address.
|
#
|
public
|
validateJson(string $attribute, mixed $value): bool
Validate the attribute is a valid JSON string.
Validate the attribute is a valid JSON string.
|
#
|
public
|
validateMax(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the size of an attribute is less than or equal to a maximum value.
Validate the size of an attribute is less than or equal to a maximum value.
|
#
|
public
|
validateMaxDigits(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute has a maximum number of digits.
Validate that an attribute has a maximum number of digits.
|
#
|
public
|
validateMimes(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the guessed extension of a file upload is in a set of file extensions.
Validate the guessed extension of a file upload is in a set of file extensions.
|
#
|
public
|
validateMimetypes(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the MIME type of a file upload attribute is in a set of MIME types.
Validate the MIME type of a file upload attribute is in a set of MIME types.
|
#
|
protected
|
shouldBlockPhpUpload(mixed $value, array<int, int|string> $parameters): bool
Check if PHP uploads are explicitly allowed.
Check if PHP uploads are explicitly allowed.
|
#
|
public
|
validateMin(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the size of an attribute is greater than or equal to a minimum value.
Validate the size of an attribute is greater than or equal to a minimum value.
|
#
|
public
|
validateMinDigits(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute has a minimum number of digits.
Validate that an attribute has a minimum number of digits.
|
#
|
public
|
validateMissing(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is missing.
Validate that an attribute is missing.
|
#
|
public
|
validateMissingIf(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is missing when another attribute has a given value.
Validate that an attribute is missing when another attribute has a given value.
|
#
|
public
|
validateMissingUnless(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is missing unless another attribute has a given value.
Validate that an attribute is missing unless another attribute has a given value.
|
#
|
public
|
validateMissingWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is missing when any given attribute is present.
Validate that an attribute is missing when any given attribute is present.
|
#
|
public
|
validateMissingWithAll(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is missing when all given attributes are present.
Validate that an attribute is missing when all given attributes are present.
|
#
|
public
|
validateMultipleOf(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the value of an attribute is a multiple of a given value.
Validate the value of an attribute is a multiple of a given value.
|
#
|
public
|
validateNullable(): bool
"Indicate" validation should pass if value is null.
"Indicate" validation should pass if value is null.
Always returns true, just lets us put "nullable" in rules.
|
#
|
public
|
validateNotIn(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate an attribute is not contained within a list of values.
Validate an attribute is not contained within a list of values.
|
#
|
public
|
validateNumeric(string $attribute, mixed $value): bool
Validate that an attribute is numeric.
Validate that an attribute is numeric.
|
#
|
public
|
validatePresent(string $attribute, mixed $value): bool
Validate that an attribute exists even if not filled.
Validate that an attribute exists even if not filled.
|
#
|
public
|
validatePresentIf(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is present when another attribute has a given value.
Validate that an attribute is present when another attribute has a given value.
|
#
|
public
|
validatePresentUnless(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is present unless another attribute has a given value.
Validate that an attribute is present unless another attribute has a given value.
|
#
|
public
|
validatePresentWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is present when any given attribute is present.
Validate that an attribute is present when any given attribute is present.
|
#
|
public
|
validatePresentWithAll(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute is present when all given attributes are present.
Validate that an attribute is present when all given attributes are present.
|
#
|
public
|
validateRegex(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute passes a regular expression check.
Validate that an attribute passes a regular expression check.
|
#
|
public
|
validateNotRegex(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that an attribute does not pass a regular expression check.
Validate that an attribute does not pass a regular expression check.
|
#
|
public
|
validateRequired(string $attribute, mixed $value): bool
Validate that a required attribute exists.
Validate that a required attribute exists.
|
#
|
public
|
validateRequiredIf(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when another attribute has a given value.
Validate that an attribute exists when another attribute has a given value.
|
#
|
public
|
validateRequiredIfAccepted(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when another attribute was "accepted".
Validate that an attribute exists when another attribute was "accepted".
|
#
|
public
|
validateRequiredIfDeclined(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when another attribute was "declined".
Validate that an attribute exists when another attribute was "declined".
|
#
|
public
|
validateProhibited(string $attribute, mixed $value): bool
Validate that an attribute does not exist or is an empty string.
Validate that an attribute does not exist or is an empty string.
|
#
|
public
|
validateProhibitedIf(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute does not exist when another attribute has a given value.
Validate that an attribute does not exist when another attribute has a given value.
|
#
|
public
|
validateProhibitedIfAccepted(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute does not exist when another attribute was "accepted".
Validate that an attribute does not exist when another attribute was "accepted".
|
#
|
public
|
validateProhibitedIfDeclined(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute does not exist when another attribute was "declined".
Validate that an attribute does not exist when another attribute was "declined".
|
#
|
public
|
validateProhibitedUnless(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute does not exist unless another attribute has a given value.
Validate that an attribute does not exist unless another attribute has a given value.
|
#
|
public
|
validateProhibits(string $attribute, mixed $value, mixed $parameters): bool
Validate that other attributes do not exist when this attribute exists.
Validate that other attributes do not exist when this attribute exists.
|
#
|
public
|
validateExclude(): bool
Indicate that an attribute is excluded.
Indicate that an attribute is excluded.
|
#
|
public
|
validateExcludeIf(string $attribute, mixed $value, mixed $parameters): bool
Indicate that an attribute should be excluded when another attribute has a given value.
Indicate that an attribute should be excluded when another attribute has a given value.
|
#
|
public
|
validateExcludeUnless(string $attribute, mixed $value, mixed $parameters): bool
Indicate that an attribute should be excluded when another attribute does not have a given value.
Indicate that an attribute should be excluded when another attribute does not have a given value.
|
#
|
public
|
validateRequiredUnless(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when another attribute does not have a given value.
Validate that an attribute exists when another attribute does not have a given value.
|
#
|
public
|
validateExcludeWith(string $attribute, mixed $value, mixed $parameters): bool
Indicate that an attribute should be excluded when another attribute presents.
Indicate that an attribute should be excluded when another attribute presents.
|
#
|
public
|
validateExcludeWithout(string $attribute, mixed $value, mixed $parameters): bool
Indicate that an attribute should be excluded when another attribute is missing.
Indicate that an attribute should be excluded when another attribute is missing.
|
#
|
public
|
parseDependentRuleParameters(array<int, int|string> $parameters): array
Prepare the values and the other value for validation.
Prepare the values and the other value for validation.
|
#
|
protected
|
shouldConvertToBoolean(string $parameter): bool
Check if parameter should be converted to boolean.
Check if parameter should be converted to boolean.
|
#
|
protected
|
convertValuesToBoolean(array $values): array
Convert the given values to boolean if they are string "true" / "false".
Convert the given values to boolean if they are string "true" / "false".
|
#
|
protected
|
convertValuesToNull(array $values): array
Convert the given values to null if they are string "null".
Convert the given values to null if they are string "null".
|
#
|
public
|
validateRequiredWith(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when any other attribute exists.
Validate that an attribute exists when any other attribute exists.
|
#
|
public
|
validateRequiredWithAll(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when all other attributes exist.
Validate that an attribute exists when all other attributes exist.
|
#
|
public
|
validateRequiredWithout(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when another attribute does not.
Validate that an attribute exists when another attribute does not.
|
#
|
public
|
validateRequiredWithoutAll(string $attribute, mixed $value, mixed $parameters): bool
Validate that an attribute exists when all other attributes do not.
Validate that an attribute exists when all other attributes do not.
|
#
|
protected
|
anyFailingRequired(array $attributes): bool
Determine if any of the given attributes fail the required test.
Determine if any of the given attributes fail the required test.
|
#
|
protected
|
allFailingRequired(array $attributes): bool
Determine if all of the given attributes fail the required test.
Determine if all of the given attributes fail the required test.
|
#
|
public
|
validateSame(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate that two attributes match.
Validate that two attributes match.
|
#
|
public
|
validateSize(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the size of an attribute.
Validate the size of an attribute.
|
#
|
public
|
validateSometimes(): bool
"Validate" optional attributes.
"Validate" optional attributes.
Always returns true, just lets us put sometimes in rules.
|
#
|
public
|
validateStartsWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the attribute starts with a given substring.
Validate the attribute starts with a given substring.
|
#
|
public
|
validateDoesntStartWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the attribute does not start with a given substring.
Validate the attribute does not start with a given substring.
|
#
|
public
|
validateEndsWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the attribute ends with a given substring.
Validate the attribute ends with a given substring.
|
#
|
public
|
validateDoesntEndWith(string $attribute, mixed $value, array<int, int|string> $parameters): bool
Validate the attribute does not end with a given substring.
Validate the attribute does not end with a given substring.
|
#
|
public
|
validateString(string $attribute, mixed $value): bool
Validate that an attribute is a string.
Validate that an attribute is a string.
|
#
|
public
|
validateTimezone(string $attribute, mixed $value, array<string, null|string> $parameters = []): bool
Validate that an attribute is a valid timezone.
Validate that an attribute is a valid timezone.
|
#
|
public
|
validateUrl(string $attribute, mixed $value, array<int, string> $parameters = []): bool
Validate that an attribute is a valid URL.
Validate that an attribute is a valid URL.
|
#
|
public
|
validateUlid(string $attribute, mixed $value): bool
Validate that an attribute is a valid ULID.
Validate that an attribute is a valid ULID.
|
#
|
public
|
validateUuid(string $attribute, mixed $value, array<int, int<0, 8>|'max'> $parameters): bool
Validate that an attribute is a valid UUID.
Validate that an attribute is a valid UUID.
|
#
|
protected
|
getSize(string $attribute, mixed $value): int|float|string
Get the size of an attribute.
Get the size of an attribute.
|
#
|
public
|
isValidFileInstance(mixed $value): bool
Check that the given value is a valid file instance.
Check that the given value is a valid file instance.
|
#
|
protected
|
compare(mixed $first, mixed $second, string $operator): bool
Determine if a comparison passes between the given values.
Determine if a comparison passes between the given values.
Throws
|
#
|
public
|
parseNamedParameters(array<int, int|string> $parameters): array
Parse named parameters to $key => $value items.
Parse named parameters to $key => $value items.
|
#
|
public
|
requireParameterCount(int $count, array<int, int|string> $parameters, string $rule): void
Require a certain number of parameters to be present.
Require a certain number of parameters to be present.
Throws
|
#
|
protected
|
isSameType(mixed $first, mixed $second): bool
Check if the parameters are of the same type.
Check if the parameters are of the same type.
|
#
|
protected
|
shouldBeNumeric(string $attribute, string $rule): void
Adds the existing rule to the numericRules array if the attribute's value is numeric.
Adds the existing rule to the numericRules array if the attribute's value is numeric.
|
#
|
protected
|
trim(mixed $value): mixed
Trim the value if it is a string.
Trim the value if it is a string.
|
#
|
protected
|
ensureExponentWithinAllowedRange(string $attribute, mixed $value): mixed
Ensure the exponent is within the allowed range.
Ensure the exponent is within the allowed range.
|
#
|