/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Validation
NameSizeModeActions
Concerns/-0755rm
Rules/-0755rm
ClosureValidationRule.php13220644editdlrm
composer.json12580644editdlrm
DatabasePresenceVerifier.php37120644editdlrm
DatabasePresenceVerifierInterface.php2870644editdlrm
Factory.php87360644editdlrm
LICENSE.md10750644editdlrm
NotPwnedVerifier.php25850644editdlrm
PresenceVerifierInterface.php8460644editdlrm
Rule.php24060644editdlrm
UnauthorizedException.php1280644editdlrm
ValidatesWhenResolvedTrait.php20030644editdlrm
ValidationData.php29480644editdlrm
ValidationException.php29970644editdlrm
ValidationRuleParser.php69280644editdlrm
ValidationServiceProvider.php21820644editdlrm
Validator.php365430644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Validation/ValidationData.php (2948B)
$value) { if ((bool) preg_match('/^'.$pattern.'/', $key, $matches)) { $keys[] = $matches[0]; } } $keys = array_unique($keys); $data = []; foreach ($keys as $key) { $data[$key] = Arr::get($masterData, $key); } return $data; } /** * Extract data based on the given dot-notated path. * * Used to extract a sub-section of the data for faster iteration. * * @param string $attribute * @param array $masterData * @return array */ public static function extractDataFromPath($attribute, $masterData) { $results = []; $value = Arr::get($masterData, $attribute, '__missing__'); if ($value !== '__missing__') { Arr::set($results, $attribute, $value); } return $results; } /** * Get the explicit part of the attribute name. * * E.g. 'foo.bar.*.baz' -> 'foo.bar' * * Allows us to not spin through all of the flattened data for some operations. * * @param string $attribute * @return string */ public static function getLeadingExplicitAttributePath($attribute) { return rtrim(explode('*', $attribute)[0], '.') ?: null; } }