Skip to content

Commit ab37f22

Browse files
adamthehutttaylorotwell
authored andcommitted
[5.4] Allow Validator extension to use array-style callable (#18399)
* Allow Validator extension to use array-style callable Currently, a validator extension can be either a Closure or a string denoting a class and method. For complex validation scenarios, however, it's useful to be able to pass an object and method in the array-style callable format (i.e. [$object, $method] instead of "$class@$method"). * Update Validator.php
1 parent ef12706 commit ab37f22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Validation/Validator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ protected function callExtension($rule, $parameters)
10261026
{
10271027
$callback = $this->extensions[$rule];
10281028

1029-
if ($callback instanceof Closure) {
1029+
if (is_callable($callback)) {
10301030
return call_user_func_array($callback, $parameters);
10311031
} elseif (is_string($callback)) {
10321032
return $this->callClassBasedExtension($callback, $parameters);

0 commit comments

Comments
 (0)